summaryrefslogtreecommitdiff
path: root/gtk/gtkaccelgroup.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-08-31 16:53:43 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-08-31 16:53:43 +0000
commitc09cc89317d222e54e98d4e2e9f2792de13897ec (patch)
tree8bcdfca4dea1360d040d0174af4c2c0ccc1e2fe6 /gtk/gtkaccelgroup.c
parentf55cffb074cea973d53c338770af179cca1856ad (diff)
downloadgdk-pixbuf-c09cc89317d222e54e98d4e2e9f2792de13897ec.tar.gz
Intern type names in code generated by glib-mkenums, too.
2005-08-31 Matthias Clasen <mclasen@redhat.com> * gdk/Makefile.am: * gtk/Makefile.am: Intern type names in code generated by glib-mkenums, too. * gtk/*.c: * gdk/x11/*.c: * gdk/*.c: Intern type names before registering the type to avoid unnecessary copies.
Diffstat (limited to 'gtk/gtkaccelgroup.c')
-rw-r--r--gtk/gtkaccelgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkaccelgroup.c b/gtk/gtkaccelgroup.c
index b65a7ff45..4ca34fd83 100644
--- a/gtk/gtkaccelgroup.c
+++ b/gtk/gtkaccelgroup.c
@@ -78,7 +78,7 @@ gtk_accel_group_get_type (void)
(GInstanceInitFunc) gtk_accel_group_init,
};
- object_type = g_type_register_static (G_TYPE_OBJECT, "GtkAccelGroup",
+ object_type = g_type_register_static (G_TYPE_OBJECT, g_intern_static_string ("GtkAccelGroup"),
&object_info, 0);
}