From c09cc89317d222e54e98d4e2e9f2792de13897ec Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 31 Aug 2005 16:53:43 +0000 Subject: Intern type names in code generated by glib-mkenums, too. 2005-08-31 Matthias Clasen * 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. --- gtk/gtkactiongroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk/gtkactiongroup.c') diff --git a/gtk/gtkactiongroup.c b/gtk/gtkactiongroup.c index 41f4e25909..2554dc0d08 100644 --- a/gtk/gtkactiongroup.c +++ b/gtk/gtkactiongroup.c @@ -106,7 +106,7 @@ gtk_action_group_get_type (void) (GInstanceInitFunc) gtk_action_group_init, }; - type = g_type_register_static (G_TYPE_OBJECT, "GtkActionGroup", + type = g_type_register_static (G_TYPE_OBJECT, g_intern_static_string ("GtkActionGroup"), &type_info, 0); } -- cgit v1.2.1