summaryrefslogtreecommitdiff
path: root/libpurple/conversations.h
diff options
context:
space:
mode:
authorAnkit Vani <a@nevitus.org>2013-06-22 14:55:21 +0530
committerAnkit Vani <a@nevitus.org>2013-06-22 14:55:21 +0530
commitd9149b8a88dcb6d3fad47c9e1709dd4118b645f1 (patch)
tree2b5673d81486d627b1e0ea309d4136e802bfa9ba /libpurple/conversations.h
parent54dfbb120c8198f16470959fc8c38ee8f4b360f2 (diff)
downloadpidgin-d9149b8a88dcb6d3fad47c9e1709dd4118b645f1.tar.gz
Begun refactoring for PurpleConversation
Diffstat (limited to 'libpurple/conversations.h')
-rw-r--r--libpurple/conversations.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libpurple/conversations.h b/libpurple/conversations.h
index d0a14d9fdb..7f238ece23 100644
--- a/libpurple/conversations.h
+++ b/libpurple/conversations.h
@@ -28,6 +28,8 @@
#define _PURPLE_CONVERSATIONS_H_
#include "conversation.h"
+#include "conversationtypes.h"
+#include "server.h"
G_BEGIN_DECLS
@@ -59,7 +61,7 @@ GList *purple_conversations_get_ims(void);
*/
GList *purple_conversations_get_chats(void);
-/**
+/** TODO type
* Finds a conversation with the specified type, name, and Purple account.
*
* @param type The type of the conversation.
@@ -69,7 +71,7 @@ GList *purple_conversations_get_chats(void);
* @return The conversation if found, or @c NULL otherwise.
*/
PurpleConversation *purple_conversations_find_with_account(
- PurpleConversationType type, const char *name,
+ GType type, const char *name,
const PurpleAccount *account);
/**