diff src/conversation.h @ 5563:9eb5b13fd412

[gaim-migrate @ 5965] Just a taste of what's coming. Standard "This won't compile" thing. Plugin authors, you're going to hate me, but that's okay, because I have friends too! It's really late. My brain resembles that of fish swimming in jello pudding with neon lights flying around chanting musicals. I'm not on drugs. I'm just that tired. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 30 May 2003 09:38:29 +0000
parents 2819f90a20ba
children dae79aefac8d
line wrap: on
line diff
--- a/src/conversation.h	Fri May 30 04:13:58 2003 +0000
+++ b/src/conversation.h	Fri May 30 09:38:29 2003 +0000
@@ -197,7 +197,7 @@
 {
 	GaimConversationType type;  /**< The type of conversation.          */
 
-	struct gaim_account *account;  /**< The user using this conversation.  */
+	GaimAccount *account;  /**< The user using this conversation.  */
 	struct gaim_window *window; /**< The parent window.                 */
 
 	int conversation_pos;       /**< The position in the window's list. */
@@ -428,7 +428,7 @@
  * @return The new conversation.
  */
 struct gaim_conversation *gaim_conversation_new(GaimConversationType type,
-												struct gaim_account *account,
+												GaimAccount *account,
 												const char *name);
 
 /**
@@ -481,7 +481,7 @@
  * @param account The gaim_account.
  */
 void gaim_conversation_set_account(struct gaim_conversation *conv,
-								struct gaim_account *account);
+								GaimAccount *account);
 
 /**
  * Returns the specified conversation's gaim_account.
@@ -493,7 +493,7 @@
  *
  * @return The conversation's gaim_account.
  */
-struct gaim_account *gaim_conversation_get_account(
+GaimAccount *gaim_conversation_get_account(
 		const struct gaim_conversation *conv);
 
 /**
@@ -505,7 +505,7 @@
  *
  * @return The conversation's gaim_connection.
  */
-struct gaim_connection *gaim_conversation_get_gc(
+GaimConnection *gaim_conversation_get_gc(
 		const struct gaim_conversation *conv);
 
 /**
@@ -716,7 +716,7 @@
  * @return The conversation if found, or @c NULL otherwise.
  */
 struct gaim_conversation *gaim_find_conversation_with_account(
-		const char *name, const struct gaim_account *account);
+		const char *name, const GaimAccount *account);
 
 /**
  * Writes to a conversation window.
@@ -1094,7 +1094,7 @@
  *
  * @return The chat conversation.
  */
-struct gaim_conversation *gaim_find_chat(struct gaim_connection *gc, int id);
+struct gaim_conversation *gaim_find_chat(GaimConnection *gc, int id);
 
 /*@}*/