]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/balloon-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / balloon-engraver.cc
index 374d6913d85993f8bd8e924c014929b2c8b2c906..328b4736ce2ecae8bc40d344653ee9d5ff31d26a 100644 (file)
@@ -3,13 +3,12 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2006 Han-Wen Nienhuys <hanwen@lilypond.org>
+  (c) 2006--2008 Han-Wen Nienhuys <hanwen@lilypond.org>
   
 */
 
 #include "engraver.hh"
 
-
 #include "stream-event.hh"
 #include "item.hh"
 
 
 class Balloon_engraver : public Engraver
 {
-  TRANSLATOR_DECLARATIONS(Balloon_engraver);
+  TRANSLATOR_DECLARATIONS (Balloon_engraver);
 
-  DECLARE_TRANSLATOR_LISTENER(annotate_output);
-  DECLARE_ACKNOWLEDGER(grob);
+  DECLARE_TRANSLATOR_LISTENER (annotate_output);
+  DECLARE_ACKNOWLEDGER (grob);
   vector<Stream_event *> events_;
 
   void stop_translation_timestep ();
@@ -78,11 +77,18 @@ Balloon_engraver::acknowledge_grob (Grob_info info)
 
 
   
-ADD_ACKNOWLEDGER(Balloon_engraver,grob);
+ADD_ACKNOWLEDGER (Balloon_engraver, grob);
   
-ADD_TRANSLATOR(Balloon_engraver,
-              "Create balloon texts",
+ADD_TRANSLATOR (Balloon_engraver,
+              /* doc */
+              "Create balloon texts.",
+
+              /* create */
               "BalloonTextItem ",
-              /*read*/ "",
-              /*write*/ ""
+
+              /*read*/
+              "",
+
+              /*write*/
+              ""
               );