Code

Ok, committed msgloan's patch to convert gbooleans to bools thus completing
[inkscape.git] / src / version.h
index 750ef8e552bdf82b61df625a8a6570561b139c77..7f708c1b881050ee11dc590f6e0d8c2b88973034 100644 (file)
@@ -49,9 +49,9 @@ struct Version {
 
 #define SP_VERSION_IS_ZERO (v) (!(v).major && !(v).minor)
 
-gboolean sp_version_from_string (const gchar *string, Inkscape::Version *version);
+bool sp_version_from_string (const gchar *string, Inkscape::Version *version);
 gchar *sp_version_to_string (Inkscape::Version version);
-gboolean sp_version_inside_range (Inkscape::Version version,
+bool sp_version_inside_range (Inkscape::Version version,
                                   unsigned major_min, unsigned minor_min,
                                   unsigned major_max, unsigned minor_max);