X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fversion.cpp;h=edaa600db5b61780be7cae88ad29a2078623b4fa;hb=6aba22359627ef015ee03b85e4b7b5b98684b834;hp=2812af3d4a9f4696c61b84b95503693c9e5babf3;hpb=c87d0307348fcfdc65b6b4ab6999a3cb0de2431f;p=inkscape.git diff --git a/src/version.cpp b/src/version.cpp index 2812af3d4..edaa600db 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -15,7 +15,7 @@ #include #include "version.h" -bool sp_version_from_string(const gchar *string, Inkscape::Version *version) +gboolean sp_version_from_string(const gchar *string, Inkscape::Version *version) { if (!string) { return FALSE; @@ -34,7 +34,7 @@ gchar *sp_version_to_string(Inkscape::Version version) return g_strdup_printf("%u.%u", version.major, version.minor); } -bool sp_version_inside_range(Inkscape::Version version, +gboolean sp_version_inside_range(Inkscape::Version version, unsigned major_min, unsigned minor_min, unsigned major_max, unsigned minor_max) {