summaryrefslogtreecommitdiff
path: root/gtk/gtkbbox.c
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2002-10-04 22:49:28 +0000
committerManish Singh <yosh@src.gnome.org>2002-10-04 22:49:28 +0000
commit2aa899147773436da85d0b43711c526c3ee8cf99 (patch)
tree620113290ff719826a224d9dd5a1b6a181264343 /gtk/gtkbbox.c
parentfc7534bbcbf839799a145dcf106d3a9f7eb8a570 (diff)
downloadgdk-pixbuf-2aa899147773436da85d0b43711c526c3ee8cf99.tar.gz
Deprecation cleanup
Fri Oct 4 15:47:06 2002 Manish Singh <yosh@gimp.org> * gtkbbox.[ch] gtkhbbox.[ch] gtkhscale.[ch] gtkscale.[ch] gtkvscale.[ch] gtkvbbox.[ch]: Deprecation cleanup
Diffstat (limited to 'gtk/gtkbbox.c')
-rw-r--r--gtk/gtkbbox.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/gtk/gtkbbox.c b/gtk/gtkbbox.c
index b7167e4e0..15fe55a88 100644
--- a/gtk/gtkbbox.c
+++ b/gtk/gtkbbox.c
@@ -64,29 +64,30 @@ static void gtk_button_box_get_child_property (GtkContainer *container,
#define DEFAULT_CHILD_IPAD_X 4
#define DEFAULT_CHILD_IPAD_Y 0
-GtkType
+GType
gtk_button_box_get_type (void)
{
- static GtkType button_box_type = 0;
+ static GType button_box_type = 0;
if (!button_box_type)
{
static const GTypeInfo button_box_info =
{
sizeof (GtkButtonBoxClass),
- NULL, /* base_init */
- NULL, /* base_finalize */
+ NULL, /* base_init */
+ NULL, /* base_finalize */
(GClassInitFunc) gtk_button_box_class_init,
- NULL, /* class_finalize */
- NULL, /* class_data */
+ NULL, /* class_finalize */
+ NULL, /* class_data */
sizeof (GtkButtonBox),
0, /* n_preallocs */
(GInstanceInitFunc) gtk_button_box_init,
- NULL, /* value_table */
+ NULL, /* value_table */
};
- button_box_type = g_type_register_static (GTK_TYPE_BOX, "GtkButtonBox",
- &button_box_info, G_TYPE_FLAG_ABSTRACT);
+ button_box_type =
+ g_type_register_static (GTK_TYPE_BOX, "GtkButtonBox",
+ &button_box_info, G_TYPE_FLAG_ABSTRACT);
}
return button_box_type;