summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-08-28 13:51:41 +0100
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-29 19:00:14 +0100
commitba158a24fe150b6535b376d3ba2696d4eb581466 (patch)
treed244d198c0a4ed81fcee87fa8d592abd2c1ac4b7 /gtk
parent86851b7ad36077a1ba32c976605bea46a07e1924 (diff)
downloadgtk+-ba158a24fe150b6535b376d3ba2696d4eb581466.tar.gz
Miscellaneous property string fixes
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkbbox.c4
-rw-r--r--gtk/gtktoolitemgroup.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkbbox.c b/gtk/gtkbbox.c
index f0c893c62c..891326d8f6 100644
--- a/gtk/gtkbbox.c
+++ b/gtk/gtkbbox.c
@@ -172,7 +172,7 @@ gtk_button_box_class_init (GtkButtonBoxClass *class)
PROP_LAYOUT_STYLE,
g_param_spec_enum ("layout-style",
P_("Layout style"),
- P_("How to layout the buttons in the box. Possible values are spread, edge, start and end"),
+ P_("How to lay out the buttons in the box. Possible values are: spread, edge, start and end"),
GTK_TYPE_BUTTON_BOX_STYLE,
DEFAULT_LAYOUT_STYLE,
GTK_PARAM_READWRITE));
@@ -323,7 +323,7 @@ gtk_button_box_set_layout (GtkButtonBox *widget,
*
* Retrieves the method being used to arrange the buttons in a button box.
*
- * Returns: the method used to layout buttons in @widget.
+ * Returns: the method used to lay out buttons in @widget.
*/
GtkButtonBoxStyle
gtk_button_box_get_layout (GtkButtonBox *widget)
diff --git a/gtk/gtktoolitemgroup.c b/gtk/gtktoolitemgroup.c
index 26a0815256..b54c22f68e 100644
--- a/gtk/gtktoolitemgroup.c
+++ b/gtk/gtktoolitemgroup.c
@@ -1577,7 +1577,7 @@ gtk_tool_item_group_class_init (GtkToolItemGroupClass *cls)
g_object_class_install_property (oclass, PROP_COLLAPSED,
g_param_spec_boolean ("collapsed",
P_("Collapsed"),
- P_("Wether the group has been collapsed and items are hidden"),
+ P_("Whether the group has been collapsed and items are hidden"),
DEFAULT_COLLAPSED,
GTK_PARAM_READWRITE));