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/gtktoolitem.c | |
parent | 263bce4445987c0ffee10438464106d55458f85e (diff) | |
download | gtk+-52711c24e8b24c395f014de9d96019b728a28cf1.tar.gz |
More canonical property names.
Diffstat (limited to 'gtk/gtktoolitem.c')
-rw-r--r-- | gtk/gtktoolitem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktoolitem.c b/gtk/gtktoolitem.c index 18f617bd73..dd610dc673 100644 --- a/gtk/gtktoolitem.c +++ b/gtk/gtktoolitem.c @@ -155,21 +155,21 @@ gtk_tool_item_class_init (GtkToolItemClass *klass) g_object_class_install_property (object_class, PROP_VISIBLE_HORIZONTAL, - g_param_spec_boolean ("visible_horizontal", + g_param_spec_boolean ("visible-horizontal", P_("Visible when horizontal"), P_("Whether the toolbar item is visible when the toolbar is in a horizontal orientation."), TRUE, G_PARAM_READWRITE)); g_object_class_install_property (object_class, PROP_VISIBLE_VERTICAL, - g_param_spec_boolean ("visible_vertical", + g_param_spec_boolean ("visible-vertical", P_("Visible when vertical"), P_("Whether the toolbar item is visible when the toolbar is in a vertical orientation."), TRUE, G_PARAM_READWRITE)); g_object_class_install_property (object_class, PROP_IS_IMPORTANT, - g_param_spec_boolean ("is_important", + g_param_spec_boolean ("is-important", P_("Is important"), P_("Whether the toolbar item is considered important. When TRUE, toolbar buttons show text in GTK_TOOLBAR_BOTH_HORIZ mode"), FALSE, |