]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/output-property-music-iterator.cc
* Documentation/user/music-glossary.tely: add @omf tags
[lilypond.git] / lily / output-property-music-iterator.cc
index f2376b6b8c7eebeab0802571a2b25739b37e2bd2..fff33c8fc465407175b84413fe85b8afe9103a2f 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 2000--2003 Jan Nieuwenhuizen <janneke@gnu.org>
  */
 
 #include "input.hh"
@@ -15,11 +15,13 @@ Output_property_music_iterator::process (Moment m)
 {
   if (last_processed_mom_ < Moment (0))
     {
-      bool accepted = try_music (music_l_);
+      bool accepted = try_music (get_music ());
       if (!accepted)
-       music_l_->origin ()->warning (_f ("Junking request: `%s'",
-                                         classname (music_l_)));
+       get_music ()->origin ()->warning (_f ("Junking event: `%s'",
+                                         classname (get_music ())));
     }
 
   skip (m);
 }
+
+IMPLEMENT_CTOR_CALLBACK (Output_property_music_iterator);