libpurple/theme.h

branch
gtkdoc-conversion
changeset 35393
00f876b129bc
parent 35024
eb3afb7643ce
child 35403
9282701d7aa9
child 37023
d9bcdc9a91e6
--- a/libpurple/theme.h	Fri Jan 31 17:56:27 2014 +0530
+++ b/libpurple/theme.h	Fri Jan 31 18:14:33 2014 +0530
@@ -76,103 +76,103 @@
 /**
  * Returns the name of the PurpleTheme object.
  *
- * @param theme  The purple theme.
+ * @theme:  The purple theme.
  *
- * @return The string representing the name of the theme.
+ * Returns: The string representing the name of the theme.
  */
 const gchar *purple_theme_get_name(PurpleTheme *theme);
 
 /**
  * Sets the name of the PurpleTheme object.
  *
- * @param theme The purple theme.
- * @param name  The name of the PurpleTheme object.
+ * @theme: The purple theme.
+ * @name:  The name of the PurpleTheme object.
  */
 void purple_theme_set_name(PurpleTheme *theme, const gchar *name);
 
 /**
  * Returns the description of the PurpleTheme object.
  *
- * @param theme  The purple theme.
+ * @theme:  The purple theme.
  *
- * @return A short description of the theme.
+ * Returns: A short description of the theme.
  */
 const gchar *purple_theme_get_description(PurpleTheme *theme);
 
 /**
  * Sets the description of the PurpleTheme object.
  *
- * @param theme  The purple theme.
- * @param description The description of the PurpleTheme object.
+ * @theme:  The purple theme.
+ * @description: The description of the PurpleTheme object.
  */
 void purple_theme_set_description(PurpleTheme *theme, const gchar *description);
 
 /**
  * Returns the author of the PurpleTheme object.
  *
- * @param theme  The purple theme.
+ * @theme:  The purple theme.
  *
- * @return The author of the theme.
+ * Returns: The author of the theme.
  */
 const gchar *purple_theme_get_author(PurpleTheme *theme);
 
 /**
  * Sets the author of the PurpleTheme object.
  *
- * @param theme  The purple theme.
- * @param author The author of the PurpleTheme object.
+ * @theme:  The purple theme.
+ * @author: The author of the PurpleTheme object.
  */
 void purple_theme_set_author(PurpleTheme *theme, const gchar *author);
 
 /**
  * Returns the type (string) of the PurpleTheme object.
  *
- * @param theme  The purple theme.
+ * @theme:  The purple theme.
  *
- * @return The string representing the type.
+ * Returns: The string representing the type.
  */
 const gchar *purple_theme_get_type_string(PurpleTheme *theme);
 
 /**
  * Returns the directory of the PurpleTheme object.
  *
- * @param theme  The purple theme.
+ * @theme:  The purple theme.
  *
- * @return The string representing the theme directory.
+ * Returns: The string representing the theme directory.
  */
 const gchar *purple_theme_get_dir(PurpleTheme *theme);
 
 /**
  * Sets the directory of the PurpleTheme object.
  *
- * @param theme  The purple theme.
- * @param dir    The directory of the PurpleTheme object.
+ * @theme:  The purple theme.
+ * @dir:    The directory of the PurpleTheme object.
  */
 void purple_theme_set_dir(PurpleTheme *theme, const gchar *dir);
 
 /**
  * Returns the image preview of the PurpleTheme object.
  *
- * @param theme  The purple theme.
+ * @theme:  The purple theme.
  *
- * @return The image preview of the PurpleTheme object.
+ * Returns: The image preview of the PurpleTheme object.
  */
 const gchar *purple_theme_get_image(PurpleTheme *theme);
 
 /**
  * Returns the image preview and directory of the PurpleTheme object.
  *
- * @param theme  The purple theme.
+ * @theme:  The purple theme.
  *
- * @return The image preview of the PurpleTheme object.
+ * Returns: The image preview of the PurpleTheme object.
  */
 gchar *purple_theme_get_image_full(PurpleTheme *theme);
 
 /**
  * Sets the directory of the PurpleTheme object.
  *
- * @param theme	 The purple theme.
- * @param img    The image preview of the PurpleTheme object.
+ * @theme:	 The purple theme.
+ * @img:    The image preview of the PurpleTheme object.
  */
 void purple_theme_set_image(PurpleTheme *theme, const gchar *img);
 

mercurial