diff libpurple/plugin.h @ 20891:59c9c04879af

Replace a bunch of @return markers with @constreturn markers. I believe these are all correct.
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 17 Oct 2007 03:36:54 +0000
parents f296be2a1039
children 6de09629f091
line wrap: on
line diff
--- a/libpurple/plugin.h	Fri Oct 12 03:49:39 2007 +0000
+++ b/libpurple/plugin.h	Wed Oct 17 03:36:54 2007 +0000
@@ -612,7 +612,7 @@
 /**
  * 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 @@
  * 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);