]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/laissez-vibrer-engraver.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / laissez-vibrer-engraver.cc
index ef3d7a6b7b7e8a5638c22ce0cc24db41ff58858d..4568dd19e482f17c1ac209c120abd0c54d1399b1 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
 */
 
@@ -19,7 +19,7 @@ class Laissez_vibrer_engraver : public Engraver
 
   Music *event_;
   Grob *lv_column_;
-  Link_array<Grob> lv_ties_;
+  vector<Grob*> lv_ties_;
   
   void stop_translation_timestep (); 
   DECLARE_ACKNOWLEDGER (note_head);
@@ -68,7 +68,7 @@ Laissez_vibrer_engraver::acknowledge_note_head (Grob_info inf)
                                     lv_tie);
   lv_tie->set_parent (lv_column_, Y_AXIS);
 
-  lv_ties_.push (lv_tie);
+  lv_ties_.push_back (lv_tie);
 }