]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/ottava-engraver.cc
The last commit was an accident. Revert 3 files that shouldn't have been
[lilypond.git] / lily / ottava-engraver.cc
index 6bec8a6c394e77f1c106f6afe0055818a0cfc523..9a6230ee8c8982c074fe54eafea34d17c56a16f5 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);
-  
+
   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,7 +124,9 @@ Ottava_spanner_engraver::finalize ()
 }
 
 #include "translator.icc"
+
 ADD_ACKNOWLEDGER (Ottava_spanner_engraver, note_column);
+
 ADD_TRANSLATOR (Ottava_spanner_engraver,
                /* doc */ "Create a text spanner when the ottavation property changes..",
                /* create */ "OttavaBracket",