im.pidgin.pidgin: e9c14932998e8737c0abb9815f8792ca8219759b

deryni at pidgin.im deryni at pidgin.im
Tue Oct 16 23:45:47 EDT 2007


-----------------------------------------------------------------
Revision: e9c14932998e8737c0abb9815f8792ca8219759b
Ancestor: 26e91b9e80a9d63c85455f11102f75f36cb95afc
Author: deryni at pidgin.im
Date: 2007-10-17T03:36:54
Branch: im.pidgin.pidgin

Modified files:
        libpurple/conversation.h libpurple/plugin.h
        libpurple/pluginpref.h libpurple/pounce.h
        libpurple/request.h

ChangeLog: 

Replace a bunch of @return markers with @constreturn markers. I believe these
are all correct.

-------------- next part --------------
============================================================
--- libpurple/conversation.h	784688af0e8b1753cf51c6b8795e198742619ba4
+++ libpurple/conversation.h	eb60430c4284de9b9afb23a0a41992d8ca4bc740
@@ -1042,7 +1042,7 @@ GList *purple_conv_chat_set_ignored(Purp
  *
  * @param chat The chat.
  *
- * @return The list of ignored users.
+ * @constreturn The list of ignored users.
  */
 GList *purple_conv_chat_get_ignored(const PurpleConvChat *chat);
 
============================================================
--- libpurple/plugin.h	58638fdb1ebc6a7990cbb8244963b643457657ab
+++ libpurple/plugin.h	245740c1e5e8cd62b64b5ffdfa2bf94028958bfa
@@ -612,7 +612,7 @@ PurplePlugin *purple_plugins_find_with_i
 /**
  * Returns a list of all loaded plugins.
  *
- * @return A list of all loaded plugins.
+ * @constreturn A list of all loaded plugins.
  */
 GList *purple_plugins_get_loaded(void);
 
@@ -622,14 +622,14 @@ GList *purple_plugins_get_loaded(void);
  * to the PURPLE_INIT_PLUGIN() macro, or if it was compiled
  * against an incompatable API version.
  *
- * @return A list of all protocol plugins.
+ * @constreturn A list of all protocol plugins.
  */
 GList *purple_plugins_get_protocols(void);
 
 /**
  * Returns a list of all plugins, whether loaded or not.
  *
- * @return A list of all plugins.
+ * @constreturn A list of all plugins.
  */
 GList *purple_plugins_get_all(void);
 
============================================================
--- libpurple/pluginpref.h	7b093cc301c1082198b4a7be7989b8a348f52108
+++ libpurple/pluginpref.h	9eeb7193d708790b45548ffcb82d244ff9ab2230
@@ -85,7 +85,7 @@ void purple_plugin_pref_frame_add(Purple
  * Get the plugin preferences from a plugin preference frame
  *
  * @param frame The plugin frame to get the plugin preferences from
- * @return a GList of plugin preferences
+ * @constreturn a GList of plugin preferences
  */
 GList *purple_plugin_pref_frame_get_prefs(PurplePluginPrefFrame *frame);
 
@@ -207,7 +207,7 @@ void purple_plugin_pref_add_choice(Purpl
  * Get the choices for a choices plugin pref
  *
  * @param pref The plugin pref
- * @return GList of the choices 
+ * @constreturn GList of the choices
  */
 GList *purple_plugin_pref_get_choices(PurplePluginPref *pref);
 
============================================================
--- libpurple/pounce.h	9ec1bc945f69bb17008884addea48f144209219f
+++ libpurple/pounce.h	30ca302bed4447e9ecbf40ff1ef1f8861f26f155
@@ -339,7 +339,7 @@ void purple_pounces_unregister_handler(c
 /**
  * Returns a list of all registered buddy pounces.
  *
- * @return The list of buddy pounces.
+ * @constreturn The list of buddy pounces.
  */
 GList *purple_pounces_get_all(void);
 
============================================================
--- libpurple/request.h	832c46bcbd175225578ce07d5510340823285b2f
+++ libpurple/request.h	a0bdfffd6295aef38045eb1fe51349e74e4e04d4
@@ -266,7 +266,7 @@ void purple_request_fields_add_group(Pur
  *
  * @param fields The fields list.
  *
- * @return A list of groups.
+ * @constreturn A list of groups.
  */
 GList *purple_request_fields_get_groups(const PurpleRequestFields *fields);
 
@@ -424,7 +424,7 @@ const char *purple_request_field_group_g
  *
  * @param group The group.
  *
- * @return The list of fields in the group.
+ * @constreturn The list of fields in the group.
  */
 GList *purple_request_field_group_get_fields(
 		const PurpleRequestFieldGroup *group);
@@ -836,7 +836,7 @@ int purple_request_field_choice_get_valu
  *
  * @param field The field.
  *
- * @return The list of labels.
+ * @constreturn The list of labels.
  */
 GList *purple_request_field_choice_get_labels(const PurpleRequestField *field);
 


More information about the Commits mailing list