--- 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); /*@}*/