Some indentation fixes and minor cleanup
This commit is contained in:
parent
872152d56b
commit
11ec2ede56
@ -44,18 +44,14 @@ gtk_hbutton_box_class_init (GtkHButtonBoxClass *class)
|
||||
static void
|
||||
gtk_hbutton_box_init (GtkHButtonBox *hbutton_box)
|
||||
{
|
||||
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbutton_box),
|
||||
GTK_ORIENTATION_HORIZONTAL);
|
||||
gtk_orientable_set_orientation (GTK_ORIENTABLE (hbutton_box),
|
||||
GTK_ORIENTATION_HORIZONTAL);
|
||||
}
|
||||
|
||||
GtkWidget*
|
||||
GtkWidget *
|
||||
gtk_hbutton_box_new (void)
|
||||
{
|
||||
GtkHButtonBox *hbutton_box;
|
||||
|
||||
hbutton_box = g_object_new (GTK_TYPE_HBUTTON_BOX, NULL);
|
||||
|
||||
return GTK_WIDGET (hbutton_box);
|
||||
return g_object_new (GTK_TYPE_HBUTTON_BOX, NULL);
|
||||
}
|
||||
|
||||
|
||||
|
@ -45,17 +45,13 @@ static void
|
||||
gtk_vbutton_box_init (GtkVButtonBox *vbutton_box)
|
||||
{
|
||||
gtk_orientable_set_orientation (GTK_ORIENTABLE (vbutton_box),
|
||||
GTK_ORIENTATION_VERTICAL);
|
||||
GTK_ORIENTATION_VERTICAL);
|
||||
}
|
||||
|
||||
GtkWidget*
|
||||
GtkWidget *
|
||||
gtk_vbutton_box_new (void)
|
||||
{
|
||||
GtkVButtonBox *vbutton_box;
|
||||
|
||||
vbutton_box = g_object_new (GTK_TYPE_VBUTTON_BOX, NULL);
|
||||
|
||||
return GTK_WIDGET (vbutton_box);
|
||||
return g_object_new (GTK_TYPE_VBUTTON_BOX, NULL);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user