]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/event-chord-iterator.cc
* lily/simultaneous-music-iterator.cc: remove clone() and copy
[lilypond.git] / lily / event-chord-iterator.cc
index d45168d5733d89953384c1a24a31e7d4b96d748c..24b6ef5ad14235454c0643f85a92eed2187e35db 100644 (file)
@@ -16,11 +16,6 @@ Event_chord_iterator::Event_chord_iterator ()
 {
 }
 
-Event_chord_iterator::Event_chord_iterator (Event_chord_iterator const &src)
-  : Simple_music_iterator (src)
-{
-}
-
 Translator_group*
 Event_chord_iterator::get_req_translator ()
 {
@@ -47,7 +42,7 @@ Event_chord_iterator::get_elt () const
 
 
 void
-Event_chord_iterator::process (Moment )
+Event_chord_iterator::process (Moment m)
 {
   if (last_processed_mom_ < Moment (0))
     {
@@ -61,6 +56,7 @@ Event_chord_iterator::process (Moment )
            mus->origin ()->warning (_f ("Junking event: `%s'", mus->name()));
        }
     }
+  Simple_music_iterator::process (m);
 }
 
 IMPLEMENT_CTOR_CALLBACK (Event_chord_iterator);