From a12f4b7be7c37624953765e94f01e9bf34a8fea2 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Thu, 21 Aug 2008 09:42:44 +0000 Subject: [PATCH] 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 --- gobject/ChangeLog | 7 +++++++ gobject/gobject.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gobject/ChangeLog b/gobject/ChangeLog index f467099..ab94eda 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,5 +1,12 @@ 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 * gobject.c (g_object_get_type): diff --git a/gobject/gobject.h b/gobject/gobject.h index 53a6aed..a75f03c 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, ...); -- 2.7.4