]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-info.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / grob-info.cc
index d8471d43f76d3caa3e1ca35cc3995116294b8f48..a8f3f4c7b1c5320b1cfa34a2ddb9381fee193c5a 100644 (file)
@@ -18,11 +18,13 @@ Grob_info::Grob_info (Translator *t, Grob *g)
 {
   origin_trans_ = t;
   grob_ = g;
+  start_end_ = START;
 }
 
 Grob_info::Grob_info ()
 {
   grob_ = 0;
+  start_end_ = START;
   origin_trans_ = 0;
 }
 
@@ -33,11 +35,11 @@ Grob_info::music_cause () const
   return unsmob_music (cause);
 }
 
-Link_array<Context>
+vector<Context*>
 Grob_info::origin_contexts (Translator *end) const
 {
   Context *t = origin_trans_->context ();
-  Link_array<Context> r;
+  vector<Context*> r;
   do
     {
       r.push_back (t);