diff options
author | Tim Janik <timj@src.gnome.org> | 1998-06-16 05:20:05 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-06-16 05:20:05 +0000 |
commit | 742d01908f754f9473e6a7993276c3aee060d1ec (patch) | |
tree | bfeef446f36bd92a51a6fa3ccd671ec706b0b9c4 /gtk/gtkfixed.c | |
parent | d36df18dee814c690fd5736729ea54175b3be628 (diff) | |
download | gtk+-742d01908f754f9473e6a7993276c3aee060d1ec.tar.gz |
boy! did i really modify that many files?
anyways, here go the child args and a lot of cleanups ;)
you wouldn't want me to put the ChangeLog entry in here, would you?
Diffstat (limited to 'gtk/gtkfixed.c')
-rw-r--r-- | gtk/gtkfixed.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gtk/gtkfixed.c b/gtk/gtkfixed.c index b3d04c1591..3dbce8ca16 100644 --- a/gtk/gtkfixed.c +++ b/gtk/gtkfixed.c @@ -41,6 +41,7 @@ static void gtk_fixed_remove (GtkContainer *container, static void gtk_fixed_foreach (GtkContainer *container, GtkCallback callback, gpointer callback_data); +static GtkType gtk_fixed_child_type (GtkContainer *container); static GtkContainerClass *parent_class = NULL; @@ -94,6 +95,13 @@ gtk_fixed_class_init (GtkFixedClass *class) container_class->add = gtk_fixed_add; container_class->remove = gtk_fixed_remove; container_class->foreach = gtk_fixed_foreach; + container_class->child_type = gtk_fixed_child_type; +} + +static GtkType +gtk_fixed_child_type (GtkContainer *container) +{ + return GTK_TYPE_WIDGET; } static void |