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/gtkpathbar.c | |
parent | f55cffb074cea973d53c338770af179cca1856ad (diff) | |
download | gtk+-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/gtkpathbar.c')
-rw-r--r-- | gtk/gtkpathbar.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/gtkpathbar.c b/gtk/gtkpathbar.c index ed80304fe1..bccf797f89 100644 --- a/gtk/gtkpathbar.c +++ b/gtk/gtkpathbar.c @@ -75,9 +75,7 @@ struct _ButtonData */ #define BUTTON_IS_FAKE_ROOT(button) ((button)->type == HOME_BUTTON) -G_DEFINE_TYPE (GtkPathBar, - gtk_path_bar, - GTK_TYPE_CONTAINER); +G_DEFINE_TYPE (GtkPathBar, gtk_path_bar, GTK_TYPE_CONTAINER); static void gtk_path_bar_finalize (GObject *object); static void gtk_path_bar_dispose (GObject *object); |