X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=inline;f=lily%2Flilypond-version.cc;h=aa192a30c77dc3415368fee9e9109609aa95e312;hb=754cc32a99b43f5fee5ebf7ed1213017268d4939;hp=6c453fab74df84a0140d65eec0836174f5ac9317;hpb=8347f6f06cd4c56d7a2d2ec482647afaaade1267;p=lilypond.git diff --git a/lily/lilypond-version.cc b/lily/lilypond-version.cc index 6c453fab74..aa192a30c7 100644 --- a/lily/lilypond-version.cc +++ b/lily/lilypond-version.cc @@ -3,12 +3,12 @@ source file of the GNU LilyPond music typesetter - (c) 1998--2006 Jan Nieuwenhuizen + (c) 1998--2009 Jan Nieuwenhuizen */ #include -#include "lilypond-input-version.hh" +#include "lilypond-version.hh" #include "string-convert.hh" #include "misc.hh" @@ -26,7 +26,7 @@ Lilypond_version::Lilypond_version (string str) patch_ = 0; vector version; - version = split_string (str, '.'); + version = string_split (str, '.'); if (version.size () > 0 && isdigit (version[0][0])) major_ = String_convert::dec2int (version[0]);