X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftime-scaled-music-iterator.cc;h=ede99b4931ca90dc8b67ae9444120605a0255fcb;hb=729d8509039c4c69ea89c102c89fc0df9d9e228c;hp=db0c669030e4c05fe1b2707df3be1c8a261bf78e;hpb=d9b43b93f2c885409bafdb157138158f65cc49aa;p=lilypond.git diff --git a/lily/time-scaled-music-iterator.cc b/lily/time-scaled-music-iterator.cc index db0c669030..ede99b4931 100644 --- a/lily/time-scaled-music-iterator.cc +++ b/lily/time-scaled-music-iterator.cc @@ -3,29 +3,29 @@ source file of the GNU LilyPond music typesetter - (c) 1998--2002 Han-Wen Nienhuys + (c) 1998--2003 Han-Wen Nienhuys */ #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->report_to ()); 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);