]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-performer.cc
*** empty log message ***
[lilypond.git] / lily / note-performer.cc
index 77c0a21bf8d4800557b55de3156131890ed191a5..331e7cc60ff7ed4b9bfe710a23dbadfcf63b41d4 100644 (file)
@@ -28,8 +28,8 @@ protected:
   void process_music ();
 
 private:
-  Link_array<Music> note_evs_;
-  Link_array<Audio_note> notes_;
+  vector<Music*> note_evs_;
+  vector<Audio_note*> notes_;
 };
 
 void
@@ -45,7 +45,8 @@ Note_performer::process_music ()
 
       while (note_evs_.size ())
        {
-         Music *n = note_evs_.pop ();
+         Music *n = note_evs_.back ();
+         note_evs_.pop_back ();
          SCM pit = n->get_property ("pitch");
 
          if (Pitch *pitp = unsmob_pitch (pit))