summaryrefslogtreecommitdiff
path: root/gtk/gtkbox.c
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2002-10-07 04:29:52 +0000
committerManish Singh <yosh@src.gnome.org>2002-10-07 04:29:52 +0000
commit285c8f78fc52a07a59593219d8d4f195e3470eb5 (patch)
treecbb882fc545cdd9b379aea4a4afb4627403b1bed /gtk/gtkbox.c
parent28def5e4ad3ad4998e222f4975fc0e63e89aad65 (diff)
downloadgdk-pixbuf-285c8f78fc52a07a59593219d8d4f195e3470eb5.tar.gz
Deprecation cleanup
Sun Oct 6 21:23:29 2002 Manish Singh <yosh@gimp.org> * gtk/gtkcontainer.[ch] gtk/gtkbox.[ch] gtk/gtkhbox.[ch] gtk/gtkvbox.[ch]: Deprecation cleanup
Diffstat (limited to 'gtk/gtkbox.c')
-rw-r--r--gtk/gtkbox.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/gtk/gtkbox.c b/gtk/gtkbox.c
index dda6b0f7f..4604f4574 100644
--- a/gtk/gtkbox.c
+++ b/gtk/gtkbox.c
@@ -70,31 +70,31 @@ static void gtk_box_get_child_property (GtkContainer *container,
guint property_id,
GValue *value,
GParamSpec *pspec);
-static GtkType gtk_box_child_type (GtkContainer *container);
+static GType gtk_box_child_type (GtkContainer *container);
static GtkContainerClass *parent_class = NULL;
-GtkType
+GType
gtk_box_get_type (void)
{
- static GtkType box_type = 0;
+ static GType box_type = 0;
if (!box_type)
{
static const GTypeInfo box_info =
{
sizeof (GtkBoxClass),
- NULL, /* base_init */
- NULL, /* base_finalize */
+ NULL, /* base_init */
+ NULL, /* base_finalize */
(GClassInitFunc) gtk_box_class_init,
- NULL, /* class_finalize */
- NULL, /* class_data */
+ NULL, /* class_finalize */
+ NULL, /* class_data */
sizeof (GtkBox),
- 0, /* n_preallocs */
+ 0, /* n_preallocs */
(GInstanceInitFunc) gtk_box_init,
- NULL, /* value_table */
+ NULL, /* value_table */
};
box_type = g_type_register_static (GTK_TYPE_CONTAINER, "GtkBox",
@@ -235,8 +235,8 @@ static void gtk_box_get_property (GObject *object,
}
}
-static GtkType
-gtk_box_child_type (GtkContainer *container)
+static GType
+gtk_box_child_type (GtkContainer *container)
{
return GTK_TYPE_WIDGET;
}