mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-03 06:32:10 +01:00
gaction: update property flags to match needs of GSimpleAction
Commit 068d53358bd366c26cff604a3de53b3cf734b08f uncovered this mismatch between properties on the interface and those on the implementation. Update them so they match.
This commit is contained in:
parent
f248ab1b60
commit
408a9fcbcc
@ -77,7 +77,8 @@ g_action_default_init (GActionInterface *iface)
|
||||
P_("Action Name"),
|
||||
P_("The name used to invoke the action"),
|
||||
NULL,
|
||||
G_PARAM_READABLE |
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_STATIC_STRINGS));
|
||||
|
||||
/**
|
||||
@ -93,7 +94,8 @@ g_action_default_init (GActionInterface *iface)
|
||||
P_("Parameter Type"),
|
||||
P_("The type of GVariant passed to activate()"),
|
||||
G_TYPE_VARIANT_TYPE,
|
||||
G_PARAM_READABLE |
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_STATIC_STRINGS));
|
||||
|
||||
/**
|
||||
@ -111,7 +113,8 @@ g_action_default_init (GActionInterface *iface)
|
||||
P_("Enabled"),
|
||||
P_("If the action can be activated"),
|
||||
TRUE,
|
||||
G_PARAM_READABLE |
|
||||
G_PARAM_CONSTRUCT |
|
||||
G_PARAM_READWRITE |
|
||||
G_PARAM_STATIC_STRINGS));
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user