From: Sebastian Wilhelmi Date: Mon, 30 Oct 2000 14:39:23 +0000 (+0000) Subject: made both functions return gboolean just for the little extra standard X-Git-Tag: GLIB_1_3_2~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a9edd37c188ee40df36af42465eb92191afcaca;p=platform%2Fupstream%2Fglib.git made both functions return gboolean just for the little extra standard 2000-10-30 Sebastian Wilhelmi * 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. --- diff --git a/gobject/ChangeLog b/gobject/ChangeLog index c28b0dd..312b461 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,9 @@ +2000-10-30 Sebastian Wilhelmi + + * 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 * gsignal.c (g_signal_list_ids): get rid of inline documentation owen diff --git a/gobject/gparam.c b/gobject/gparam.c index 9ce72c3..fd93698 100644 --- a/gobject/gparam.c +++ b/gobject/gparam.c @@ -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) { diff --git a/gobject/gvalue.c b/gobject/gvalue.c index 4093800..e6a2dbd 100644 --- a/gobject/gvalue.c +++ b/gobject/gvalue.c @@ -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) {