diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-09-14 04:31:23 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-09-14 04:31:23 +0000 |
commit | ece160149804dd7b67c7624748486546bd8c58c1 (patch) | |
tree | 064c904e56f6ccecc7cef2dce9e586681cf14653 /gtk/gtkbutton.c | |
parent | 7d416fec1bc3f61376c3beb829e4044d3a183e5a (diff) | |
download | gtk+-ece160149804dd7b67c7624748486546bd8c58c1.tar.gz |
No point in using a mem chunk for window groups, buttons, labels.
2005-09-14 Matthias Clasen <mclasen@redhat.com>
* gtk/gtklabel.c (gtk_label_get_type):
* gtk/gtkbutton.c (gtk_button_get_type):
* gtk/gtkwindow.c (gtk_window_group_get_type): No point in
using a mem chunk for window groups, buttons, labels.
Diffstat (limited to 'gtk/gtkbutton.c')
-rw-r--r-- | gtk/gtkbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkbutton.c b/gtk/gtkbutton.c index fe7e529404..134fec6eae 100644 --- a/gtk/gtkbutton.c +++ b/gtk/gtkbutton.c @@ -161,7 +161,7 @@ gtk_button_get_type (void) NULL, /* class_finalize */ NULL, /* class_data */ sizeof (GtkButton), - 16, /* n_preallocs */ + 0, /* n_preallocs */ (GInstanceInitFunc) gtk_button_init, }; |