]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-version.cc
(Text markup): add note about
[lilypond.git] / lily / lily-version.cc
index 40220a5532f2f8b42498d1575a7a277e785d0067..eb31aaec17fed953e7301acff048a48fc2e10a68 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1999--2001 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c)  1999--2003 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "config.h"
@@ -11,9 +11,9 @@
 #include "lily-version.hh"
 
 String
-version_str ()
+version_string ()
 {
-  String str (MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL);
+  String str = MAJOR_VERSION "." MINOR_VERSION "."  PATCH_LEVEL;
   String mpl ("." MY_PATCH_LEVEL);
   if (mpl != ".")
     str += mpl;
@@ -21,16 +21,16 @@ version_str ()
 }
 
 String 
-gnu_lilypond_str ()
+gnu_lilypond_string ()
 {
   String str = "GNU LilyPond";
   return str;
 }
 
 String 
-gnu_lilypond_version_str ()
+gnu_lilypond_version_string ()
 {
-  String str = gnu_lilypond_str () + " " + version_str ();
+  String str = gnu_lilypond_string () + " " + version_string ();
   return str;
 }