]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/metronome-engraver.cc
(class Phrasing_slur_engraver):
[lilypond.git] / lily / metronome-engraver.cc
index 12020d306d5db969eae707519581b88f1e423fea..f42c9f1870e71b9a15fb25aa2c033a6ce7c32a72 100644 (file)
@@ -29,9 +29,9 @@ protected:
 
   void create_items (Music *);
 protected:
-  virtual void stop_translation_timestep ();
+  void stop_translation_timestep ();
   virtual bool try_music (Music *ev);
-  virtual void process_music ();
+  void process_music ();
 };
 
 Metronome_mark_engraver::Metronome_mark_engraver ()
@@ -85,14 +85,15 @@ Metronome_mark_engraver::process_music ()
     }
 }
 
+#include "translator.icc"
+
 ADD_TRANSLATOR (Metronome_mark_engraver,
-               /* descr */ "Engrave metro nome marking. This delegates the formatting work "
+               /* doc */ "Engrave metro nome marking. This delegates the formatting work "
                "to the function in the metronomeMarkFormatter property. "
                "The mark is put over all staves. "
                "The staves are taken from the @code{stavesFound} property, "
                "which is maintained by @code{@ref{Staff_collecting_engraver}}. ",
-               /* creats*/ "MetronomeMark",
-               /* accepts */ "metronome-change-event",
-               /* acks  */ "",
-               /* reads */ "stavesFound metronomeMarkFormatter",
+               /* create */ "MetronomeMark",
+               /* accept */ "metronome-change-event",
+               /* read */ "stavesFound metronomeMarkFormatter",
                /* write */ "");