gaction: update property flags to match needs of GSimpleAction

Commit 068d53358b uncovered this mismatch
between properties on the interface and those on the implementation.
Update them so they match.
This commit is contained in:
Cosimo Cecchi 2010-12-28 12:24:39 +01:00
parent f248ab1b60
commit 408a9fcbcc

View File

@ -77,7 +77,8 @@ g_action_default_init (GActionInterface *iface)
P_("Action Name"), P_("Action Name"),
P_("The name used to invoke the action"), P_("The name used to invoke the action"),
NULL, NULL,
G_PARAM_READABLE | G_PARAM_READWRITE |
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS)); G_PARAM_STATIC_STRINGS));
/** /**
@ -93,7 +94,8 @@ g_action_default_init (GActionInterface *iface)
P_("Parameter Type"), P_("Parameter Type"),
P_("The type of GVariant passed to activate()"), P_("The type of GVariant passed to activate()"),
G_TYPE_VARIANT_TYPE, G_TYPE_VARIANT_TYPE,
G_PARAM_READABLE | G_PARAM_READWRITE |
G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS)); G_PARAM_STATIC_STRINGS));
/** /**
@ -111,7 +113,8 @@ g_action_default_init (GActionInterface *iface)
P_("Enabled"), P_("Enabled"),
P_("If the action can be activated"), P_("If the action can be activated"),
TRUE, TRUE,
G_PARAM_READABLE | G_PARAM_CONSTRUCT |
G_PARAM_READWRITE |
G_PARAM_STATIC_STRINGS)); G_PARAM_STATIC_STRINGS));
/** /**