]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dot-column-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / dot-column-engraver.cc
index 04a75241c6cd17eea49ffb67fdf5246e82c718f9..1d6f937e92b9e4a15c444817a166df3111e00d7c 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--2008 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
@@ -54,8 +53,16 @@ Dot_column_engraver::acknowledge_rhythmic_head (Grob_info info)
 
 ADD_ACKNOWLEDGER (Dot_column_engraver, rhythmic_head);
 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",
-               /* read */ "",
-               /* write */ "");
+               /* doc */
+               "Engrave dots on dotted notes shifted to the right of the"
+               " note.  If omitted, then dots appear on top of the notes.",
+
+               /* create */
+               "DotColumn ",
+
+               /* read */
+               "",
+
+               /* write */
+               ""
+               );