made both functions return gboolean just for the little extra standard
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>
Mon, 30 Oct 2000 14:39:23 +0000 (14:39 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Mon, 30 Oct 2000 14:39:23 +0000 (14:39 +0000)
2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gvalue.c (exchange_entries_equal), gparam.c (param_spec_equals):
made both functions return gboolean just for the little extra
standard conformance now that GEqualFunc is introduced.

gobject/ChangeLog
gobject/gparam.c
gobject/gvalue.c

index c28b0ddc86e1d56ee72ebcc12400f6a1e097e3e2..312b4615861993d8ff10b33c998aa79a9e114ac6 100644 (file)
@@ -1,3 +1,9 @@
+2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * gvalue.c (exchange_entries_equal), gparam.c (param_spec_equals):
+       made both functions return gboolean just for the little extra
+       standard conformance now that GEqualFunc is introduced.
+
 Mon Oct 30 05:52:45 2000  Tim Janik  <timj@gtk.org>
 
        * gsignal.c (g_signal_list_ids): get rid of inline documentation owen
index 9ce72c379180472d2759a827886fb7271e3cc7b4..fd93698d76a0a14b6946b0665103576bd7ad093d 100644 (file)
@@ -286,7 +286,7 @@ param_spec_hash (gconstpointer key_spec)
   return h;
 }
 
-static gint
+static gboolean
 param_spec_equals (gconstpointer key_spec_1,
                   gconstpointer key_spec_2)
 {
index 40938009e28b0512b1b4907630e918e9692275f8..e6a2dbdbb043a68ef5aea6fd26f1d98f08b51770 100644 (file)
@@ -142,7 +142,7 @@ g_value_reset (GValue *value)
   value_table->value_init (value);
 }
 
-static gint
+static gboolean
 exchange_entries_equal (gconstpointer v1,
                        gconstpointer v2)
 {