diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-08-31 16:53:43 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-08-31 16:53:43 +0000 |
commit | c09cc89317d222e54e98d4e2e9f2792de13897ec (patch) | |
tree | 8bcdfca4dea1360d040d0174af4c2c0ccc1e2fe6 /gtk/gtkvseparator.c | |
parent | f55cffb074cea973d53c338770af179cca1856ad (diff) | |
download | gdk-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/gtkvseparator.c')
-rw-r--r-- | gtk/gtkvseparator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkvseparator.c b/gtk/gtkvseparator.c index 15798991d..1b90e86e9 100644 --- a/gtk/gtkvseparator.c +++ b/gtk/gtkvseparator.c @@ -56,7 +56,7 @@ gtk_vseparator_get_type (void) }; vseparator_type = - g_type_register_static (GTK_TYPE_SEPARATOR, "GtkVSeparator", + g_type_register_static (GTK_TYPE_SEPARATOR, g_intern_static_string ("GtkVSeparator"), &vseparator_info, 0); } |