From: Johan Dahlin Date: Thu, 21 Aug 2008 09:42:44 +0000 (+0000) Subject: Mark g_object_get_type function as const, it's a fundamental type and can X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=a12f4b7be7c37624953765e94f01e9bf34a8fea2;p=dana%2Fcg-glib.git Mark g_object_get_type function as const, it's a fundamental type and can 2008-08-21 Johan Dahlin * gobject.h: Mark g_object_get_type function as const, it's a fundamental type and can safely marked as const, as opposed to traditionally *_get_type functions. svn path=/trunk/; revision=7378 --- diff --git a/gobject/ChangeLog b/gobject/ChangeLog index f4670993..ab94edab 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,10 @@ +2008-08-21 Johan Dahlin + + * gobject.h: + Mark g_object_get_type function as const, it's + a fundamental type and can safely marked as const, + as opposed to traditionally *_get_type functions. + 2008-08-21 Johan Dahlin Bug 548800 – Missing a g_object_get_type function diff --git a/gobject/gobject.h b/gobject/gobject.h index 53a6aed0..a75f03cb 100644 --- a/gobject/gobject.h +++ b/gobject/gobject.h @@ -396,7 +396,7 @@ GParamSpec* g_object_interface_find_property (gpointer g_iface, GParamSpec**g_object_interface_list_properties (gpointer g_iface, guint *n_properties_p); -GType g_object_get_type (void); +GType g_object_get_type (void) G_GNUC_CONST; gpointer g_object_new (GType object_type, const gchar *first_property_name, ...);