]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-version.cc
2003 -> 2004
[lilypond.git] / lily / lily-version.cc
index bc9c2bd876073e4b7734af036c55b277ed26c254..5d31b3934271f522bd3da30866b855ee65917b64 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1999--2002 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1999--2004 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;
 }