summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skypekit/conversation.cpp
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2013-06-10 19:42:11 +0000
committerAlexander Lantsev <aunsane@gmail.com>2013-06-10 19:42:11 +0000
commit4adc7e198f49bbd5b39141f13322b653402c8a79 (patch)
tree6f0be5aa2527a9ab1aa9f2966dc17b033847641c /protocols/Skype/src/skypekit/conversation.cpp
parentcdf4d005c67b8b5ef62170ccd4fdd29579965d9c (diff)
Skype:
- fixed chat role updating - fixed chat commands git-svn-id: http://svn.miranda-ng.org/main/trunk@4911 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skypekit/conversation.cpp')
-rw-r--r--protocols/Skype/src/skypekit/conversation.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/protocols/Skype/src/skypekit/conversation.cpp b/protocols/Skype/src/skypekit/conversation.cpp
index 3c56e57559..25ffbffbfe 100644
--- a/protocols/Skype/src/skypekit/conversation.cpp
+++ b/protocols/Skype/src/skypekit/conversation.cpp
@@ -1,3 +1,13 @@
#include "conversation.h"
-CConversation::CConversation(unsigned int oid, SERootObject* root) : Conversation(oid, root) { } \ No newline at end of file
+CConversation::CConversation(unsigned int oid, SERootObject* root) : Conversation(oid, root) { }
+
+void CConversation::SetOnConvoChangedCallback(OnConvoChanged callback)
+{
+ this->callback = callback;
+}
+
+void CConversation::OnChange(int prop)
+{
+ //(((CSkypeProto*)this->root)->*callback)(this->ref(), prop);
+} \ No newline at end of file