]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/ottava-engraver.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / ottava-engraver.cc
index 76c65015976824d35cb17f6975245d5b446893ac..4b430b3882c87f45332303f18bae57ae87514cf1 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2000--2005 Han-Wen Nienhuys
+  (c) 2000--2006 Han-Wen Nienhuys
 */
 
 #include "protected-scm.hh"
@@ -17,9 +17,9 @@ public:
   TRANSLATOR_DECLARATIONS (Ottava_spanner_engraver);
 protected:
   virtual void finalize ();
-  DECLARE_ACKNOWLEDGER(note_column);
-  
+
+  DECLARE_ACKNOWLEDGER (note_column);
+
   void process_music ();
   void stop_translation_timestep ();
   virtual void derived_mark () const;
@@ -70,7 +70,7 @@ Ottava_spanner_engraver::process_music ()
 void
 Ottava_spanner_engraver::acknowledge_note_column (Grob_info info)
 {
-  Item *it = info.item();
+  Item *it = info.item ();
   if (span_ && it)
     {
       Side_position_interface::add_support (span_, it);
@@ -124,10 +124,10 @@ Ottava_spanner_engraver::finalize ()
 }
 
 #include "translator.icc"
-ADD_ACKNOWLEDGER(Ottava_spanner_engraver, note_column);
+ADD_ACKNOWLEDGER (Ottava_spanner_engraver, note_column);
 ADD_TRANSLATOR (Ottava_spanner_engraver,
-               /* descr */ "Create a text spanner when the ottavation property changes..",
-               /* creats*/ "OttavaBracket",
-               /* accepts */ "",
-               /* reads */ "ottavation",
+               /* doc */ "Create a text spanner when the ottavation property changes..",
+               /* creat*/ "OttavaBracket",
+               /* accept */ "",
+               /* read */ "ottavation",
                /* write */ "");