X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpitch-squash-engraver.cc;h=764566faab23d9630d4add101d7b3f5f2fa4e658;hb=90192e0047f4b2c1ebf23ff77f670c7d9e6c2869;hp=65cef28d72fa1fa936694f1db7aed26453bfbb8d;hpb=75eebcb49e52d296b1da3e1074e0825d2c780db4;p=lilypond.git diff --git a/lily/pitch-squash-engraver.cc b/lily/pitch-squash-engraver.cc index 65cef28d72..764566faab 100644 --- a/lily/pitch-squash-engraver.cc +++ b/lily/pitch-squash-engraver.cc @@ -3,12 +3,15 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2006 Han-Wen Nienhuys + (c) 1997--2009 Han-Wen Nienhuys */ + +#include "engraver.hh" + #include "staff-symbol-referencer.hh" #include "note-head.hh" #include "rhythmic-head.hh" -#include "engraver.hh" +#include "grob.hh" class Pitch_squash_engraver : public Engraver { @@ -33,13 +36,17 @@ Pitch_squash_engraver::Pitch_squash_engraver () ADD_ACKNOWLEDGER (Pitch_squash_engraver, note_head); ADD_TRANSLATOR (Pitch_squash_engraver, /* doc */ - "Set the vertical position of noteheads to " - "@code{squashedPosition}, if that " - "property is set. " - "This can be used to make a single line staff " - "demonstrating the rhythm of a melody.", - - /* create */ "", - /* accept */ "", - /* read */ "squashedPosition", - /* write */ ""); + "Set the vertical position of note heads to" + " @code{squashedPosition}, if that property is set. This can" + " be used to make a single-line staff demonstrating the" + " rhythm of a melody.", + + /* create */ + "", + + /* read */ + "squashedPosition ", + + /* write */ + "" + );