[gtk+/wip/gtkmenutrackeritem: 13/20] gtkactionmuxer: Fix introspection issues
- From: Ryan Lortie <ryanl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/gtkmenutrackeritem: 13/20] gtkactionmuxer: Fix introspection issues
- Date: Fri, 10 May 2013 18:54:29 +0000 (UTC)
commit 2258dd9a75acfbc0f9bf01a9d0d8ebb1ce38a1e7
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Thu May 9 15:28:57 2013 -0400
gtkactionmuxer: Fix introspection issues
gtk/gtkactionmuxer.c | 16 +++++++++-------
gtk/gtkactionmuxer.h | 2 +-
2 files changed, 10 insertions(+), 8 deletions(-)
---
diff --git a/gtk/gtkactionmuxer.c b/gtk/gtkactionmuxer.c
index 8cf9d74..925f4cc 100644
--- a/gtk/gtkactionmuxer.c
+++ b/gtk/gtkactionmuxer.c
@@ -26,7 +26,7 @@
#include <string.h>
-/*
+/**
* SECTION:gactionmuxer
* @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);
}
-/*
+/**
* gtk_action_muxer_insert:
* @muxer: a #GtkActionMuxer
* @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);
}
-/*
+/**
* gtk_action_muxer_remove:
* @muxer: a #GtkActionMuxer
* @prefix: the prefix of the action group to remove
@@ -690,7 +690,7 @@ gtk_action_muxer_remove (GtkActionMuxer *muxer,
}
}
-/*
+/**
* gtk_action_muxer_new:
*
* Creates a new #GtkActionMuxer.
@@ -701,10 +701,11 @@ gtk_action_muxer_new (void)
return g_object_new (GTK_TYPE_ACTION_MUXER, NULL);
}
-/* gtk_action_muxer_get_parent:
+/**
+ * gtk_action_muxer_get_parent:
* @muxer: a #GtkActionMuxer
*
- * Returns: (transfer-none): the parent of @muxer, or NULL.
+ * Returns: (transfer none): the parent of @muxer, or NULL.
*/
GtkActionMuxer *
gtk_action_muxer_get_parent (GtkActionMuxer *muxer)
@@ -714,7 +715,8 @@ gtk_action_muxer_get_parent (GtkActionMuxer *muxer)
return muxer->parent;
}
-/* gtk_action_muxer_set_parent:
+/**
+ * gtk_action_muxer_set_parent:
* @muxer: a #GtkActionMuxer
* @parent: (allow-none): the new parent #GtkActionMuxer
*
diff --git a/gtk/gtkactionmuxer.h b/gtk/gtkactionmuxer.h
index 07f88ad..4014830 100644
--- a/gtk/gtkactionmuxer.h
+++ b/gtk/gtkactionmuxer.h
@@ -37,7 +37,7 @@ GtkActionMuxer * gtk_action_muxer_new (void);
void gtk_action_muxer_insert (GtkActionMuxer *muxer,
const gchar *prefix,
- GActionGroup *group);
+ GActionGroup *action_group);
void gtk_action_muxer_remove (GtkActionMuxer *muxer,
const gchar *prefix);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]