libpurple/roomlist.h

branch
soc.2013.gobjectification.plugins
changeset 37075
cf3f735b09b7
parent 37072
b4d3e353c563
parent 35472
474e26199560
child 37088
4d5ad6b1878e
--- a/libpurple/roomlist.h	Thu Feb 06 16:53:42 2014 +0530
+++ b/libpurple/roomlist.h	Thu Feb 06 20:02:57 2014 +0530
@@ -89,16 +89,22 @@
 
 /**
  * PurpleRoomlistUiOps:
+ * @show_with_account: Force the ui to pop up a dialog and get the list.
+ * @create:            A new list was created.
+ * @set_fields:        Sets the columns.
+ * @add_room:          Add a room to the list.
+ * @in_progress:       Are we fetching stuff still?
+ * @destroy:           We're destroying list.
  *
  * The room list ops to be filled out by the UI.
  */
 struct _PurpleRoomlistUiOps {
-	void (*show_with_account)(PurpleAccount *account); /**< Force the ui to pop up a dialog and get the list */
-	void (*create)(PurpleRoomlist *list); /**< A new list was created. */
-	void (*set_fields)(PurpleRoomlist *list, GList *fields); /**< Sets the columns. */
-	void (*add_room)(PurpleRoomlist *list, PurpleRoomlistRoom *room); /**< Add a room to the list. */
-	void (*in_progress)(PurpleRoomlist *list, gboolean flag); /**< Are we fetching stuff still? */
-	void (*destroy)(PurpleRoomlist *list); /**< We're destroying list. */
+	void (*show_with_account)(PurpleAccount *account);
+	void (*create)(PurpleRoomlist *list);
+	void (*set_fields)(PurpleRoomlist *list, GList *fields);
+	void (*add_room)(PurpleRoomlist *list, PurpleRoomlistRoom *room);
+	void (*in_progress)(PurpleRoomlist *list, gboolean flag);
+	void (*destroy)(PurpleRoomlist *list);
 
 	/*< private >*/
 	void (*_purple_reserved1)(void);
@@ -139,7 +145,7 @@
 G_BEGIN_DECLS
 
 /**************************************************************************/
-/** @name Room List API                                                   */
+/* Room List API                                                          */
 /**************************************************************************/
 /*@{*/
 
@@ -321,7 +327,7 @@
 /*@}*/
 
 /**************************************************************************/
-/** @name Room API                                                        */
+/* Room API                                                               */
 /**************************************************************************/
 /*@{*/
 
@@ -426,7 +432,7 @@
 /*@}*/
 
 /**************************************************************************/
-/** @name Room Field API                                                  */
+/* Room Field API                                                         */
 /**************************************************************************/
 /*@{*/
 
@@ -486,7 +492,7 @@
 /*@}*/
 
 /**************************************************************************/
-/** @name UI Registration Functions                                       */
+/* UI Registration Functions                                              */
 /**************************************************************************/
 /*@{*/
 

mercurial