]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grid-line-span-engraver.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / grid-line-span-engraver.cc
index 73e81736c31146c1090fc680607ac887fa165c4d..dc45a3a01c2d7197761f3e9d8dccb2489b717487 100644 (file)
@@ -3,8 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
-
+  (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "engraver.hh"
@@ -19,8 +18,8 @@ class Grid_line_span_engraver : public Engraver
 public:
   TRANSLATOR_DECLARATIONS (Grid_line_span_engraver);
 protected:
-  DECLARE_ACKNOWLEDGER(grid_point);
-  PRECOMPUTED_VIRTUAL void stop_translation_timestep ();
+  DECLARE_ACKNOWLEDGER (grid_point);
+  void stop_translation_timestep ();
 };
 
 Grid_line_span_engraver::Grid_line_span_engraver ()
@@ -59,12 +58,11 @@ Grid_line_span_engraver::stop_translation_timestep ()
 }
 
 #include "translator.icc"
-ADD_ACKNOWLEDGER(Grid_line_span_engraver, grid_point);
+ADD_ACKNOWLEDGER (Grid_line_span_engraver, grid_point);
 ADD_TRANSLATOR (Grid_line_span_engraver,
-               /* descr */ "This engraver makes cross-staff linelines: It catches all normal "
+               /* doc */ "This engraver makes cross-staff linelines: It catches all normal "
                "line lines, and draws a single span-line across them.",
-               /* creats*/ "GridLine",
-               /* accepts */ "",
-               /* acks  */ "",
-               /* reads */ "",
+               /* create */ "GridLine",
+               /* accept */ "",
+               /* read */ "",
                /* write */ "");