[gtk+/wip/gtkmenutrackeritem] gtkactionmuxer: Fix introspection issues



commit 71286ee9153e8a34b36a6e2a9de90e16be346333
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]