summaryrefslogtreecommitdiff
path: root/libpurple/conversations.h
diff options
context:
space:
mode:
authorAnkit Vani <a@nevitus.org>2013-06-26 14:45:36 +0530
committerAnkit Vani <a@nevitus.org>2013-06-26 14:45:36 +0530
commitbb3b5ae53f63f5439aaca480436c673cdb3c4268 (patch)
tree4f1909a8e8ffb163b7ec25d2efbdc435ed0b5600 /libpurple/conversations.h
parent2ba4c52c831bb0f9dc4a7c690dbd33169060db3b (diff)
downloadpidgin-bb3b5ae53f63f5439aaca480436c673cdb3c4268.tar.gz
Added missing API implementations to PurpleConversation and subclasses
Diffstat (limited to 'libpurple/conversations.h')
-rw-r--r--libpurple/conversations.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libpurple/conversations.h b/libpurple/conversations.h
index 882d1f6734..26a57a71b8 100644
--- a/libpurple/conversations.h
+++ b/libpurple/conversations.h
@@ -38,14 +38,14 @@ G_BEGIN_DECLS
/**************************************************************************/
/*@{*/
-/** TODO
+/**
* Adds a conversation to the list of conversations.
*
* @param conv The conversation.
*/
void purple_conversations_add(PurpleConversation *conv);
-/** TODO
+/**
* Removes a conversation from the list of conversations.
*
* @param conv The conversation.
@@ -75,7 +75,7 @@ GList *purple_conversations_get_ims(void);
*/
GList *purple_conversations_get_chats(void);
-/** TODO all
+/**
* Finds a conversation of any type with the specified name and Purple account.
*
* @param name The name of the conversation.
@@ -86,7 +86,7 @@ GList *purple_conversations_get_chats(void);
PurpleConversation *purple_conversations_find_with_account(const char *name,
const PurpleAccount *account);
-/** TODO IMs
+/**
* Finds an IM with the specified name and Purple account.
*
* @param name The name of the conversation.
@@ -97,7 +97,7 @@ PurpleConversation *purple_conversations_find_with_account(const char *name,
PurpleIMConversation *purple_conversations_find_im_with_account(const char *name,
const PurpleAccount *account);
-/** TODO chats
+/**
* Finds a chat with the specified name and Purple account.
*
* @param name The name of the conversation.
@@ -125,12 +125,12 @@ PurpleChatConversation *purple_conversations_find_chat(const PurpleConnection *g
*/
void purple_conversations_set_ui_ops(PurpleConversationUiOps *ops);
-/** TODO
+/**
* Gets the default conversation UI operations structure.
*
* @return The UI conversation operations structure.
*/
-PurpleConversationUiOps *purple_conversations_set_ui_ops(void);
+PurpleConversationUiOps *purple_conversations_get_ui_ops(void);
/**
* Returns the conversation subsystem handle.