]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-heads-engraver.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / note-heads-engraver.cc
index 109e4905c7b6b0f1d3ea228bfbc0ae6de2815b4d..7b91132246c8ac377a9ab9894aba514cc17f066f 100644 (file)
@@ -20,9 +20,9 @@ using namespace std;
 
 class Note_heads_engraver : public Engraver
 {
-  Link_array__Item_ notes_;
-  Link_array__Item_ dots_;
-  Link_array__Music_ note_evs_;
+  vector<Item*> notes_;
+  vector<Item*> dots_;
+  vector<Music*> note_evs_;
 
 public:
   TRANSLATOR_DECLARATIONS (Note_heads_engraver);
@@ -128,7 +128,11 @@ Note_heads_engraver::stop_translation_timestep ()
 
 ADD_TRANSLATOR (Note_heads_engraver,
                /* doc */ "Generate noteheads.",
-               /* create */ "NoteHead Dots",
-               /* accept */ "note-event busy-playing-event",
+               /* create */
+               "NoteHead "
+               "Dots",
+               /* accept */
+               "note-event "
+               "busy-playing-event",
                /* read */ "middleCPosition",
                /* write */ "");