X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgactiongroup.c;h=212df73fb612958070fb845310d3df7fa9e96557;hb=20f4d1820b8d4d0fc4447188e33efffd6d4a88d8;hp=0112565c6d4e3140c7cbb89bd54d1dba090956b6;hpb=796389d6c8ce1fb4645db8c13f04aeb7f13d9225;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gactiongroup.c b/gio/gactiongroup.c index 0112565..212df73 100644 --- a/gio/gactiongroup.c +++ b/gio/gactiongroup.c @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Authors: Ryan Lortie */ @@ -28,6 +26,7 @@ * SECTION:gactiongroup * @title: GActionGroup * @short_description: A group of actions + * @include: gio/gio.h * @see_also: #GAction * * #GActionGroup represents a group of actions. Actions can be used to @@ -65,7 +64,7 @@ * with actions. 'Internal' APIs (ie: ones meant only to be accessed by * the action group implementation) are found on subclasses. This is * why you will find - for example - g_action_group_get_action_enabled() - * but not an equivalent set() call. + * but not an equivalent set() call. * * Signals are emitted on the action group in response to state changes * on individual actions. @@ -390,7 +389,7 @@ g_action_group_has_action (GActionGroup *action_group, * possible for an action to be removed and for a new action to be added * with the same name but a different parameter type. * - * Return value: the parameter type + * Returns: the parameter type * * Since: 2.28 **/ @@ -464,7 +463,7 @@ g_action_group_get_action_state_type (GActionGroup *action_group, * The return value (if non-%NULL) should be freed with * g_variant_unref() when it is no longer required. * - * Return value: (transfer full): the state range hint + * Returns: (transfer full): the state range hint * * Since: 2.28 **/ @@ -488,7 +487,7 @@ g_action_group_get_action_state_hint (GActionGroup *action_group, * An action must be enabled in order to be activated or in order to * have its state changed from outside callers. * - * Return value: whether or not the action is currently enabled + * Returns: whether or not the action is currently enabled * * Since: 2.28 **/ @@ -516,7 +515,7 @@ g_action_group_get_action_enabled (GActionGroup *action_group, * The return value (if non-%NULL) should be freed with * g_variant_unref() when it is no longer required. * - * Return value: (allow-none): the current state of the action + * Returns: (allow-none): the current state of the action * * Since: 2.28 **/ @@ -699,10 +698,10 @@ g_action_group_action_state_changed (GActionGroup *action_group, * @action_group: a #GActionGroup * @action_name: the name of an action in the group * @enabled: (out): if the action is presently enabled - * @parameter_type: (out): the parameter type, or %NULL if none needed - * @state_type: (out): the state type, or %NULL if stateless - * @state_hint: (out): the state hint, or %NULL if none - * @state: (out): the current state, or %NULL if stateless + * @parameter_type: (out) (allow-none): the parameter type, or %NULL if none needed + * @state_type: (out) (allow-none): the state type, or %NULL if stateless + * @state_hint: (out) (allow-none): the state hint, or %NULL if none + * @state: (out) (allow-none): the current state, or %NULL if stateless * * Queries all aspects of the named action within an @action_group. * @@ -711,7 +710,7 @@ g_action_group_action_state_changed (GActionGroup *action_group, * g_action_group_get_action_parameter_type(), * g_action_group_get_action_state_type(), * g_action_group_get_action_state_hint() and - * g_action_group_get_state() with a single function call. + * g_action_group_get_action_state() with a single function call. * * This provides two main benefits. *