X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fdot-column-engraver.cc;h=76af05790e18a662642c3955c0121a47e305a9b4;hb=6a33b5cb60d40f9ae549deac8d0e6ebebf17af60;hp=a2b1cdf3a5bfd26765499739d86681a89fadb152;hpb=aa93c901382b55d19a30b601afbdca85ccd16987;p=lilypond.git diff --git a/lily/dot-column-engraver.cc b/lily/dot-column-engraver.cc index a2b1cdf3a5..76af05790e 100644 --- a/lily/dot-column-engraver.cc +++ b/lily/dot-column-engraver.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1998--2006 Han-Wen Nienhuys + (c) 1998--2007 Han-Wen Nienhuys */ #include "rhythmic-head.hh" @@ -11,11 +11,11 @@ #include "side-position-interface.hh" #include "engraver.hh" #include "translator.icc" +#include "item.hh" class Dot_column_engraver : public Engraver { Grob *dotcol_; - vector heads_; public: TRANSLATOR_DECLARATIONS (Dot_column_engraver); @@ -35,7 +35,6 @@ void Dot_column_engraver::stop_translation_timestep () { dotcol_ = 0; - heads_.clear (); } void @@ -54,9 +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", - /* accept */ "", - /* 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 */ + "" + );