Code

Fix fallback icon loading order for icons with legacy names.
[inkscape.git] / src / version.h
index 7f708c1b881050ee11dc590f6e0d8c2b88973034..c620631237c27791cdcfe3b772c5b3051b4659f1 100644 (file)
@@ -12,8 +12,7 @@
 
 #include <glib/gtypes.h>
 
-#define SVG_VERSION "1.0"
-#define SODIPODI_VERSION "0.32"
+#define SVG_VERSION "1.1"
 
 namespace Inkscape {
 
@@ -49,9 +48,9 @@ struct Version {
 
 #define SP_VERSION_IS_ZERO (v) (!(v).major && !(v).minor)
 
-bool sp_version_from_string (const gchar *string, Inkscape::Version *version);
+gboolean sp_version_from_string (const gchar *string, Inkscape::Version *version);
 gchar *sp_version_to_string (Inkscape::Version version);
-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);