]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-heads-engraver.cc
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / lily / note-heads-engraver.cc
index cfd684779948acdb97a151424b88d58e6d78bd5c..7d976761dd9fbfdd512ad9d4af025c6b6b01feea 100644 (file)
@@ -9,8 +9,6 @@
 #include <cctype>
 using namespace std;
 
-#include "dots.hh"
-#include "dot-column.hh"
 #include "duration.hh"
 #include "item.hh"
 #include "output-def.hh"
@@ -25,7 +23,6 @@ using namespace std;
 class Note_heads_engraver : public Engraver
 {
   vector<Item*> notes_;
-  vector<Item*> dots_;
   vector<Stream_event*> note_evs_;
 
 public:
@@ -100,16 +97,12 @@ 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",
-               /* accept */
-               "note-event",
+               "NoteHead ",
                /* read */ "middleCPosition",
                /* write */ "");