]> git.donarmstrong.com Git - lilypond.git/commitdiff
(process_music): idem.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 4 Oct 2006 10:34:09 +0000 (10:34 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 4 Oct 2006 10:34:09 +0000 (10:34 +0000)
lily/note-heads-engraver.cc

index cfd684779948acdb97a151424b88d58e6d78bd5c..1c6bf4142d4e70efd749cde07a472a46b834212b 100644 (file)
@@ -25,7 +25,6 @@ using namespace std;
 class Note_heads_engraver : public Engraver
 {
   vector<Item*> notes_;
-  vector<Item*> dots_;
   vector<Stream_event*> note_evs_;
 
 public:
@@ -100,15 +99,13 @@ void
 Note_heads_engraver::stop_translation_timestep ()
 {
   notes_.clear ();
-  dots_.clear ();
   note_evs_.clear ();
 }
 
 ADD_TRANSLATOR (Note_heads_engraver,
                /* doc */ "Generate noteheads.",
                /* create */
-               "NoteHead "
-               "Dots",
+               "NoteHead ",
                /* accept */
                "note-event",
                /* read */ "middleCPosition",