X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flily-version.cc;h=c15c76e6287845d411fb243e653931308d8df7b1;hb=31568c504806f35aac420a394c9eab07abd9faa7;hp=95f503e6108a52ecc1522a1803dc1e67f969fc91;hpb=a6ee9dcd388111e842064a8d46ab06c4897a00d2;p=lilypond.git diff --git a/lily/lily-version.cc b/lily/lily-version.cc index 95f503e610..c15c76e628 100644 --- a/lily/lily-version.cc +++ b/lily/lily-version.cc @@ -3,34 +3,35 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2002 Jan Nieuwenhuizen + (c) 1999--2006 Jan Nieuwenhuizen */ -#include "config.h" -#include "version.hh" #include "lily-version.hh" -String +#include "config.hh" +#include "version.hh" + +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; }