minor indentation / coding style fixes.

2008-08-29  Michael Natterer  <mitch@imendio.com>

	* gtk/gtkpaned.c: minor indentation / coding style fixes.


svn path=/trunk/; revision=21236
This commit is contained in:
Michael Natterer 2008-08-29 11:41:09 +00:00 committed by Michael Natterer
parent d322b83085
commit 79035c9d48
2 changed files with 32 additions and 28 deletions

View File

@ -1,3 +1,7 @@
2008-08-29 Michael Natterer <mitch@imendio.com>
* gtk/gtkpaned.c: minor indentation / coding style fixes.
2008-08-29 Matthias Clasen <mclasen@redhat.com> 2008-08-29 Matthias Clasen <mclasen@redhat.com>
Bug 549262 GtkScrolledWindow should not accept focus unless Bug 549262 GtkScrolledWindow should not accept focus unless

View File

@ -67,16 +67,16 @@ static void gtk_paned_get_property (GObject *object,
guint prop_id, guint prop_id,
GValue *value, GValue *value,
GParamSpec *pspec); GParamSpec *pspec);
static void gtk_paned_set_child_property (GtkContainer *container, static void gtk_paned_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_paned_get_child_property (GtkContainer *container, static void gtk_paned_get_child_property (GtkContainer *container,
GtkWidget *child, GtkWidget *child,
guint property_id, guint property_id,
GValue *value, GValue *value,
GParamSpec *pspec); GParamSpec *pspec);
static void gtk_paned_finalize (GObject *object); static void gtk_paned_finalize (GObject *object);
static void gtk_paned_realize (GtkWidget *widget); static void gtk_paned_realize (GtkWidget *widget);
static void gtk_paned_unrealize (GtkWidget *widget); static void gtk_paned_unrealize (GtkWidget *widget);
@ -228,7 +228,7 @@ gtk_paned_class_init (GtkPanedClass *class)
P_("TRUE if the Position property should be used"), P_("TRUE if the Position property should be used"),
FALSE, FALSE,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
gtk_widget_class_install_style_property (widget_class, gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("handle-size", g_param_spec_int ("handle-size",
P_("Handle Size"), P_("Handle Size"),
@ -273,14 +273,14 @@ gtk_paned_class_init (GtkPanedClass *class)
G_MAXINT, G_MAXINT,
GTK_PARAM_READABLE)); GTK_PARAM_READABLE));
/** /**
* GtkPaned:resize: * GtkPaned:resize:
* *
* The "resize" child property determines whether the child expands and * The "resize" child property determines whether the child expands and
* shrinks along with the paned widget. * shrinks along with the paned widget.
* *
* Since: 2.4 * Since: 2.4
*/ */
gtk_container_class_install_child_property (container_class, gtk_container_class_install_child_property (container_class,
CHILD_PROP_RESIZE, CHILD_PROP_RESIZE,
g_param_spec_boolean ("resize", g_param_spec_boolean ("resize",
@ -289,14 +289,14 @@ gtk_paned_class_init (GtkPanedClass *class)
TRUE, TRUE,
GTK_PARAM_READWRITE)); GTK_PARAM_READWRITE));
/** /**
* GtkPaned:shrink: * GtkPaned:shrink:
* *
* The "shrink" child property determines whether the child can be made * The "shrink" child property determines whether the child can be made
* smaller than its requisition. * smaller than its requisition.
* *
* Since: 2.4 * Since: 2.4
*/ */
gtk_container_class_install_child_property (container_class, gtk_container_class_install_child_property (container_class,
CHILD_PROP_SHRINK, CHILD_PROP_SHRINK,
g_param_spec_boolean ("shrink", g_param_spec_boolean ("shrink",
@ -444,7 +444,7 @@ gtk_paned_class_init (GtkPanedClass *class)
binding_set = gtk_binding_set_by_class (class); binding_set = gtk_binding_set_by_class (class);
/* F6 and friends */ /* F6 and friends */
gtk_binding_entry_add_signal (binding_set, gtk_binding_entry_add_signal (binding_set,
GDK_F6, 0, GDK_F6, 0,
"cycle-child-focus", 1, "cycle-child-focus", 1,
G_TYPE_BOOLEAN, FALSE); G_TYPE_BOOLEAN, FALSE);