changeset 19684:f3e0b1221765

This will silence a few warnings when building the Doxygen docs.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sat, 08 Sep 2007 22:41:31 +0000
parents 8021fe1e2a63
children 5444ab83b30a
files doc/SIGNAL-HOWTO.dox libpurple/conversation.h libpurple/server.h pidgin/gtkblist.h pidgin/gtkutils.h
diffstat 5 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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 <tt>const char *</tt>s.
+	 *  @param users    A @c GList of <tt>const char *</tt>s.
 	 *  @see purple_conv_chat_rename_user()
 	 */
 	void (*chat_remove_users)(PurpleConversation *conv, GList *users);
--- 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);
--- 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);
--- 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);