# HG changeset patch # User John Bailey # Date 1189291291 0 # Node ID f3e0b12217655af70e75f629843685504517d022 # Parent 8021fe1e2a63dc1e8cb333425451783bb2a5a29a This will silence a few warnings when building the Doxygen docs. diff -r 8021fe1e2a63 -r f3e0b1221765 doc/SIGNAL-HOWTO.dox --- a/doc/SIGNAL-HOWTO.dox Sat Sep 08 20:43:59 2007 +0000 +++ b/doc/SIGNAL-HOWTO.dox Sat Sep 08 22:41:31 2007 +0000 @@ -78,7 +78,7 @@ @todo Describe this more. - @See value.h + @see value.h @section connect Connecting to the signal Once the signal is registered, you can connect callbacks to it. First, you diff -r 8021fe1e2a63 -r f3e0b1221765 libpurple/conversation.h --- a/libpurple/conversation.h Sat Sep 08 20:43:59 2007 +0000 +++ b/libpurple/conversation.h Sat Sep 08 22:41:31 2007 +0000 @@ -184,7 +184,7 @@ time_t mtime); /** Add @a cbuddies to a chat. - * @param cbuddies A @C GList of #PurpleConvChatBuddy structs. + * @param cbuddies A @c GList of #PurpleConvChatBuddy structs. * @param new_arrivals Whether join notices should be shown. * (Join notices are actually written to the * conversation by #purple_conv_chat_add_users().) @@ -200,7 +200,7 @@ void (*chat_rename_user)(PurpleConversation *conv, const char *old_name, const char *new_name, const char *new_alias); /** Remove @a users from a chat. - * @param users A @C GList of const char *s. + * @param users A @c GList of const char *s. * @see purple_conv_chat_rename_user() */ void (*chat_remove_users)(PurpleConversation *conv, GList *users); diff -r 8021fe1e2a63 -r f3e0b1221765 libpurple/server.h --- a/libpurple/server.h Sat Sep 08 20:43:59 2007 +0000 +++ b/libpurple/server.h Sat Sep 08 22:41:31 2007 +0000 @@ -64,7 +64,7 @@ * * @param gc The connection to send the message on. * @param who Whose attention to request. - * @param type An index into the prpl's attention_types list determining the type + * @param type_code An index into the prpl's attention_types list determining the type * of the attention request command to send. 0 if prpl only defines one * (for example, Yahoo and MSN), but some protocols define more (MySpaceIM). * @@ -77,7 +77,7 @@ * * @param gc The connection that received the attention message. * @param who Who requested your attention. - * @param type An index into the prpl's attention_types list determining the type + * @param type_code An index into the prpl's attention_types list determining the type * of the attention request command to send. */ void serv_got_attention(PurpleConnection *gc, const char *who, guint type_code); diff -r 8021fe1e2a63 -r f3e0b1221765 pidgin/gtkblist.h --- a/pidgin/gtkblist.h Sat Sep 08 20:43:59 2007 +0000 +++ b/pidgin/gtkblist.h Sat Sep 08 22:41:31 2007 +0000 @@ -378,7 +378,7 @@ * This tooltip will be destroyed the next time this function is called, or when XXXX * is called * - * @param buddy The buddy to show a tooltip for + * @param node The buddy list node to show a tooltip for * @param widget The widget to draw the tooltip on */ void pidgin_blist_draw_tooltip(PurpleBlistNode *node, GtkWidget *widget); diff -r 8021fe1e2a63 -r f3e0b1221765 pidgin/gtkutils.h --- a/pidgin/gtkutils.h Sat Sep 08 20:43:59 2007 +0000 +++ b/pidgin/gtkutils.h Sat Sep 08 22:41:31 2007 +0000 @@ -311,7 +311,7 @@ * The default filter function for screenname autocomplete. * * @param completion_entry The completion entry to filter. - * @param online_accounts If this is @c FALSE, only the autocompletion entries + * @param all_accounts If this is @c FALSE, only the autocompletion entries * which belong to an online account will be filtered. * @return Returns @c TRUE if the autocompletion entry is filtered. */ @@ -435,7 +435,7 @@ * @param y Address of the gint representing the vertical position * where the menu shall be drawn. This is an output parameter. * @param push_in This is an output parameter? - * @param user_data Not used by this particular position function. + * @param data Not used by this particular position function. */ void pidgin_menu_position_func_helper(GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer data);