]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dot-column-engraver.cc
Fix 417.
[lilypond.git] / lily / dot-column-engraver.cc
index a2b1cdf3a5bfd26765499739d86681a89fadb152..3f2982df746607dfc7d0a10aad4a4fecf0d5f676 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1998--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1998--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "rhythmic-head.hh"
 #include "side-position-interface.hh"
 #include "engraver.hh"
 #include "translator.icc"
+#include "item.hh" 
 
 class Dot_column_engraver : public Engraver
 {
   Grob *dotcol_;
-  vector<Item*> heads_;
 public:
   TRANSLATOR_DECLARATIONS (Dot_column_engraver);
 
@@ -35,7 +35,6 @@ void
 Dot_column_engraver::stop_translation_timestep ()
 {
   dotcol_ = 0;
-  heads_.clear ();
 }
 
 void
@@ -57,6 +56,5 @@ ADD_TRANSLATOR (Dot_column_engraver,
                /* doc */ "Engraves dots on dotted notes shifted to the right of the note.\n"
                "If omitted, then dots appear on top of the notes.",
                /* create */ "DotColumn",
-               /* accept */ "",
                /* read */ "",
                /* write */ "");