action stuff: Introspection fixes

This commit is contained in:
Jasper St. Pierre 2013-05-09 15:28:57 -04:00
parent 8ad384f3dc
commit 6030ba4803
4 changed files with 16 additions and 14 deletions

View File

@ -26,7 +26,7 @@
#include <string.h> #include <string.h>
/* /**
* SECTION:gtkactionmuxer * SECTION:gtkactionmuxer
* @short_description: Aggregate and monitor several action groups * @short_description: Aggregate and monitor several action groups
* *
@ -602,7 +602,7 @@ gtk_action_muxer_class_init (GObjectClass *class)
g_object_class_install_properties (class, NUM_PROPERTIES, properties); g_object_class_install_properties (class, NUM_PROPERTIES, properties);
} }
/* /**
* gtk_action_muxer_insert: * gtk_action_muxer_insert:
* @muxer: a #GtkActionMuxer * @muxer: a #GtkActionMuxer
* @prefix: the prefix string for the action group * @prefix: the prefix string for the action group
@ -656,7 +656,7 @@ gtk_action_muxer_insert (GtkActionMuxer *muxer,
G_CALLBACK (gtk_action_muxer_group_action_state_changed), group); G_CALLBACK (gtk_action_muxer_group_action_state_changed), group);
} }
/* /**
* gtk_action_muxer_remove: * gtk_action_muxer_remove:
* @muxer: a #GtkActionMuxer * @muxer: a #GtkActionMuxer
* @prefix: the prefix of the action group to remove * @prefix: the prefix of the action group to remove
@ -690,7 +690,7 @@ gtk_action_muxer_remove (GtkActionMuxer *muxer,
} }
} }
/* /**
* gtk_action_muxer_new: * gtk_action_muxer_new:
* *
* Creates a new #GtkActionMuxer. * Creates a new #GtkActionMuxer.
@ -701,10 +701,11 @@ gtk_action_muxer_new (void)
return g_object_new (GTK_TYPE_ACTION_MUXER, NULL); return g_object_new (GTK_TYPE_ACTION_MUXER, NULL);
} }
/* gtk_action_muxer_get_parent: /**
* gtk_action_muxer_get_parent:
* @muxer: a #GtkActionMuxer * @muxer: a #GtkActionMuxer
* *
* Returns: (transfer-none): the parent of @muxer, or NULL. * Returns: (transfer none): the parent of @muxer, or NULL.
*/ */
GtkActionMuxer * GtkActionMuxer *
gtk_action_muxer_get_parent (GtkActionMuxer *muxer) gtk_action_muxer_get_parent (GtkActionMuxer *muxer)
@ -714,7 +715,8 @@ gtk_action_muxer_get_parent (GtkActionMuxer *muxer)
return muxer->parent; return muxer->parent;
} }
/* gtk_action_muxer_set_parent: /**
* gtk_action_muxer_set_parent:
* @muxer: a #GtkActionMuxer * @muxer: a #GtkActionMuxer
* @parent: (allow-none): the new parent #GtkActionMuxer * @parent: (allow-none): the new parent #GtkActionMuxer
* *

View File

@ -37,7 +37,7 @@ GtkActionMuxer * gtk_action_muxer_new (void);
void gtk_action_muxer_insert (GtkActionMuxer *muxer, void gtk_action_muxer_insert (GtkActionMuxer *muxer,
const gchar *prefix, const gchar *prefix,
GActionGroup *group); GActionGroup *action_group);
void gtk_action_muxer_remove (GtkActionMuxer *muxer, void gtk_action_muxer_remove (GtkActionMuxer *muxer,
const gchar *prefix); const gchar *prefix);

View File

@ -34,7 +34,7 @@ gtk_action_observable_default_init (GtkActionObservableInterface *iface)
{ {
} }
/* /**
* gtk_action_observable_register_observer: * gtk_action_observable_register_observer:
* @observable: a #GtkActionObservable * @observable: a #GtkActionObservable
* @action_name: the name of the action * @action_name: the name of the action
@ -54,7 +54,7 @@ gtk_action_observable_register_observer (GtkActionObservable *observable,
->register_observer (observable, action_name, observer); ->register_observer (observable, action_name, observer);
} }
/* /**
* gtk_action_observable_unregister_observer: * gtk_action_observable_unregister_observer:
* @observable: a #GtkActionObservable * @observable: a #GtkActionObservable
* @action_name: the name of the action * @action_name: the name of the action

View File

@ -54,7 +54,7 @@ gtk_action_observer_default_init (GtkActionObserverInterface *class)
{ {
} }
/* /**
* gtk_action_observer_action_added: * gtk_action_observer_action_added:
* @observer: a #GtkActionObserver * @observer: a #GtkActionObserver
* @observable: the source of the event * @observable: the source of the event
@ -85,7 +85,7 @@ gtk_action_observer_action_added (GtkActionObserver *observer,
->action_added (observer, observable, action_name, parameter_type, enabled, state); ->action_added (observer, observable, action_name, parameter_type, enabled, state);
} }
/* /**
* gtk_action_observer_action_enabled_changed: * gtk_action_observer_action_enabled_changed:
* @observer: a #GtkActionObserver * @observer: a #GtkActionObserver
* @observable: the source of the event * @observable: the source of the event
@ -110,7 +110,7 @@ gtk_action_observer_action_enabled_changed (GtkActionObserver *observer,
->action_enabled_changed (observer, observable, action_name, enabled); ->action_enabled_changed (observer, observable, action_name, enabled);
} }
/* /**
* gtk_action_observer_action_state_changed: * gtk_action_observer_action_state_changed:
* @observer: a #GtkActionObserver * @observer: a #GtkActionObserver
* @observable: the source of the event * @observable: the source of the event
@ -135,7 +135,7 @@ gtk_action_observer_action_state_changed (GtkActionObserver *observer,
->action_state_changed (observer, observable, action_name, state); ->action_state_changed (observer, observable, action_name, state);
} }
/* /**
* gtk_action_observer_action_removed: * gtk_action_observer_action_removed:
* @observer: a #GtkActionObserver * @observer: a #GtkActionObserver
* @observable: the source of the event * @observable: the source of the event