From a28e76f09c5a2344563b987774092b894d4658a9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 9 Mar 2016 21:13:44 -0500 Subject: [PATCH] GtkActionable: Improve property names These names show up as title in the property editor in the inspector, so we want them to look consistent with the rest. --- gtk/gtkactionable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkactionable.c b/gtk/gtkactionable.c index 29a7f16192..b41aabb030 100644 --- a/gtk/gtkactionable.c +++ b/gtk/gtkactionable.c @@ -68,12 +68,12 @@ static void gtk_actionable_default_init (GtkActionableInterface *iface) { g_object_interface_install_property (iface, - g_param_spec_string ("action-name", P_("action name"), + g_param_spec_string ("action-name", P_("Action name"), P_("The name of the associated action, like 'app.quit'"), NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); g_object_interface_install_property (iface, - g_param_spec_variant ("action-target", P_("action target value"), + g_param_spec_variant ("action-target", P_("Action target value"), P_("The parameter for action invocations"), G_VARIANT_TYPE_ANY, NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); }