diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-09 06:15:13 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-09 06:15:13 +0000 |
commit | 52711c24e8b24c395f014de9d96019b728a28cf1 (patch) | |
tree | a14adea19950f5915458e44c9be22af11bf3855c /gtk/gtkbbox.c | |
parent | 263bce4445987c0ffee10438464106d55458f85e (diff) | |
download | gtk+-52711c24e8b24c395f014de9d96019b728a28cf1.tar.gz |
More canonical property names.
Diffstat (limited to 'gtk/gtkbbox.c')
-rw-r--r-- | gtk/gtkbbox.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkbbox.c b/gtk/gtkbbox.c index ac9a9d1d32..a161e7e74c 100644 --- a/gtk/gtkbbox.c +++ b/gtk/gtkbbox.c @@ -117,7 +117,7 @@ gtk_button_box_class_init (GtkButtonBoxClass *class) */ gtk_widget_class_install_style_property (widget_class, - g_param_spec_int ("child_min_width", + g_param_spec_int ("child-min-width", P_("Minimum child width"), P_("Minimum width of buttons inside the box"), 0, @@ -126,7 +126,7 @@ gtk_button_box_class_init (GtkButtonBoxClass *class) G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, - g_param_spec_int ("child_min_height", + g_param_spec_int ("child-min-height", P_("Minimum child height"), P_("Minimum height of buttons inside the box"), 0, @@ -135,7 +135,7 @@ gtk_button_box_class_init (GtkButtonBoxClass *class) G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, - g_param_spec_int ("child_internal_pad_x", + g_param_spec_int ("child-internal-pad-x", P_("Child internal width padding"), P_("Amount to increase child's size on either side"), 0, @@ -144,7 +144,7 @@ gtk_button_box_class_init (GtkButtonBoxClass *class) G_PARAM_READABLE)); gtk_widget_class_install_style_property (widget_class, - g_param_spec_int ("child_internal_pad_y", + g_param_spec_int ("child-internal-pad-y", P_("Child internal height padding"), P_("Amount to increase child's size on the top and bottom"), 0, @@ -153,7 +153,7 @@ gtk_button_box_class_init (GtkButtonBoxClass *class) G_PARAM_READABLE)); g_object_class_install_property (gobject_class, PROP_LAYOUT_STYLE, - g_param_spec_enum ("layout_style", + g_param_spec_enum ("layout-style", P_("Layout style"), P_("How to layout the buttons in the box. Possible values are default, spread, edge, start and end"), GTK_TYPE_BUTTON_BOX_STYLE, |