mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
reindent static prototypes.
2008-10-07 Michael Natterer <mitch@imendio.com> * gtk/gtkbox.c: reindent static prototypes. svn path=/trunk/; revision=21598
This commit is contained in:
parent
776a1d26ab
commit
a23bb3bf88
@ -1,3 +1,7 @@
|
|||||||
|
2008-10-07 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
|
* gtk/gtkbox.c: reindent static prototypes.
|
||||||
|
|
||||||
2008-10-07 Michael Natterer <mitch@imendio.com>
|
2008-10-07 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
Bug 553573 – Add orientation API to GtkBox
|
Bug 553573 – Add orientation API to GtkBox
|
||||||
|
72
gtk/gtkbox.c
72
gtk/gtkbox.c
@ -61,39 +61,39 @@ struct _GtkBoxPrivate
|
|||||||
#define GTK_BOX_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_BOX, GtkBoxPrivate))
|
#define GTK_BOX_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_BOX, GtkBoxPrivate))
|
||||||
|
|
||||||
|
|
||||||
static void gtk_box_set_property (GObject *object,
|
static void gtk_box_set_property (GObject *object,
|
||||||
guint prop_id,
|
guint prop_id,
|
||||||
const GValue *value,
|
const GValue *value,
|
||||||
GParamSpec *pspec);
|
GParamSpec *pspec);
|
||||||
static void gtk_box_get_property (GObject *object,
|
static void gtk_box_get_property (GObject *object,
|
||||||
guint prop_id,
|
guint prop_id,
|
||||||
GValue *value,
|
GValue *value,
|
||||||
GParamSpec *pspec);
|
GParamSpec *pspec);
|
||||||
|
|
||||||
static void gtk_box_size_request (GtkWidget *widget,
|
static void gtk_box_size_request (GtkWidget *widget,
|
||||||
GtkRequisition *requisition);
|
GtkRequisition *requisition);
|
||||||
static void gtk_box_size_allocate (GtkWidget *widget,
|
static void gtk_box_size_allocate (GtkWidget *widget,
|
||||||
GtkAllocation *allocation);
|
GtkAllocation *allocation);
|
||||||
|
|
||||||
static void gtk_box_add (GtkContainer *container,
|
static void gtk_box_add (GtkContainer *container,
|
||||||
GtkWidget *widget);
|
GtkWidget *widget);
|
||||||
static void gtk_box_remove (GtkContainer *container,
|
static void gtk_box_remove (GtkContainer *container,
|
||||||
GtkWidget *widget);
|
GtkWidget *widget);
|
||||||
static void gtk_box_forall (GtkContainer *container,
|
static void gtk_box_forall (GtkContainer *container,
|
||||||
gboolean include_internals,
|
gboolean include_internals,
|
||||||
GtkCallback callback,
|
GtkCallback callback,
|
||||||
gpointer callback_data);
|
gpointer callback_data);
|
||||||
static void gtk_box_set_child_property (GtkContainer *container,
|
static void gtk_box_set_child_property (GtkContainer *container,
|
||||||
GtkWidget *child,
|
GtkWidget *child,
|
||||||
guint property_id,
|
guint property_id,
|
||||||
const GValue *value,
|
const GValue *value,
|
||||||
GParamSpec *pspec);
|
GParamSpec *pspec);
|
||||||
static void gtk_box_get_child_property (GtkContainer *container,
|
static void gtk_box_get_child_property (GtkContainer *container,
|
||||||
GtkWidget *child,
|
GtkWidget *child,
|
||||||
guint property_id,
|
guint property_id,
|
||||||
GValue *value,
|
GValue *value,
|
||||||
GParamSpec *pspec);
|
GParamSpec *pspec);
|
||||||
static GType gtk_box_child_type (GtkContainer *container);
|
static GType gtk_box_child_type (GtkContainer *container);
|
||||||
|
|
||||||
|
|
||||||
G_DEFINE_TYPE_WITH_CODE (GtkBox, gtk_box, GTK_TYPE_CONTAINER,
|
G_DEFINE_TYPE_WITH_CODE (GtkBox, gtk_box, GTK_TYPE_CONTAINER,
|
||||||
@ -610,11 +610,11 @@ gtk_box_child_type (GtkContainer *container)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gtk_box_set_child_property (GtkContainer *container,
|
gtk_box_set_child_property (GtkContainer *container,
|
||||||
GtkWidget *child,
|
GtkWidget *child,
|
||||||
guint property_id,
|
guint property_id,
|
||||||
const GValue *value,
|
const GValue *value,
|
||||||
GParamSpec *pspec)
|
GParamSpec *pspec)
|
||||||
{
|
{
|
||||||
gboolean expand = 0;
|
gboolean expand = 0;
|
||||||
gboolean fill = 0;
|
gboolean fill = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user