diff -r 48f85579cc4c -r 8e2b68c79fa1 libpurple/theme.h --- a/libpurple/theme.h Wed Jan 29 00:28:08 2014 +0530 +++ b/libpurple/theme.h Wed Jan 29 05:28: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);