]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/time-scaled-music-iterator.cc
2003 -> 2004
[lilypond.git] / lily / time-scaled-music-iterator.cc
index db0c669030e4c05fe1b2707df3be1c8a261bf78e..7bd174bc02f27903ed00bd658558777d6ef494b1 100644 (file)
@@ -3,29 +3,29 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "time-scaled-music-iterator.hh"
 #include "time-scaled-music.hh"
-#include "musical-request.hh"
+#include "event.hh"
 #include "translator-group.hh"
-#include "command-request.hh"
+
 
 void
 Time_scaled_music_iterator::process (Moment m)
 {
   if (!m.to_bool ())
     {
-      Music_iterator *yeah = try_music (music_l ());
+      Music_iterator *yeah = try_music (get_music ());
       if (yeah)
-       set_translator (yeah->report_to_l ());
+       set_translator (yeah->get_outlet ());
       else
-       music_l ()->origin ()->warning (_ ("no one to print a tuplet start bracket"));
+       get_music ()->origin ()->warning (_ ("no one to print a tuplet start bracket"));
     }
 
   Music_wrapper_iterator::process (m);
 }
-
 IMPLEMENT_CTOR_CALLBACK (Time_scaled_music_iterator);