X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flily-version.cc;h=2163e0b472274df01a8a280837f20aae65bf159c;hb=644ed77f9c0165e22290549660e71ff3ead573d5;hp=bba3de2fd0cacb3547062f2fdd3c5ed7a908a36f;hpb=c659cb200486c2f908703696a1b2873e78c8160a;p=lilypond.git diff --git a/lily/lily-version.cc b/lily/lily-version.cc index bba3de2fd0..2163e0b472 100644 --- a/lily/lily-version.cc +++ b/lily/lily-version.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2004 Jan Nieuwenhuizen + (c) 1999--2009 Jan Nieuwenhuizen */ #include "lily-version.hh" @@ -11,27 +11,27 @@ #include "config.hh" #include "version.hh" -String +string version_string () { - String str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL; - String mpl ("." MY_PATCH_LEVEL); + string str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL; + string mpl ("." MY_PATCH_LEVEL); if (mpl != ".") str += mpl; return str; } -String +string gnu_lilypond_string () { - String str = "GNU LilyPond"; + string str = "GNU LilyPond"; return str; } -String +string gnu_lilypond_version_string () { - String str = gnu_lilypond_string () + " " + version_string (); + string str = gnu_lilypond_string () + " " + version_string (); return str; }