]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bar-engraver.cc
(framework_relocation): use INSTALLER_PREFIX.
[lilypond.git] / lily / bar-engraver.cc
index 996f02bfe9ffc5e75faa465001da6a9159a09213..af7d39929e325dda69a7b13cd454ac46ce45a4b4 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
@@ -21,7 +21,7 @@ class Bar_engraver : public Engraver
 {
 public:
   TRANSLATOR_DECLARATIONS (Bar_engraver);
-  void request_bar (String type_string);
+  void request_bar (string type_string);
 
 protected:
   virtual void finalize ();
@@ -96,9 +96,9 @@ Bar_engraver::stop_translation_timestep ()
 }
 
 ADD_TRANSLATOR (Bar_engraver,
-               /* descr */ "Create barlines. This engraver is controlled through the "
+               /* doc */ "Create barlines. This engraver is controlled through the "
                "@code{whichBar} property. If it has no bar line to create, it will forbid a linebreak at this point",
-               /* creats*/ "BarLine",
-               /* accepts */ "",
-               /* reads */ "whichBar",
+               /* creat*/ "BarLine",
+               /* accept */ "",
+               /* read */ "whichBar",
                /* write */ "");