summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_services.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-07-04 12:05:12 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-07-04 12:05:12 +0000
commit1b6b7ac88e07f1e7122d6f792927e077256c27da (patch)
tree8de94bb82fae3a73a291350e940277c0e11ae255 /protocols/Skype/src/skype_services.cpp
parent173c419faeb1c726f84127627dc8860f7538f5cf (diff)
added tooltip creation for group chats
git-svn-id: http://svn.miranda-ng.org/main/trunk@5231 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_services.cpp')
-rw-r--r--protocols/Skype/src/skype_services.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_services.cpp b/protocols/Skype/src/skype_services.cpp
index 5ab0deb67f..01e598727e 100644
--- a/protocols/Skype/src/skype_services.cpp
+++ b/protocols/Skype/src/skype_services.cpp
@@ -1,4 +1,5 @@
#include "skype.h"
+#include <m_chat.h>
void CSkypeProto::InitServiceList()
{
@@ -19,4 +20,6 @@ void CSkypeProto::InitInstanceServiceList()
this->CreateServiceObj(PS_GETAVATARCAPS, &CSkypeProto::GetAvatarCaps);
this->CreateServiceObj(PS_GETMYAVATART, &CSkypeProto::GetMyAvatar);
this->CreateServiceObj(PS_SETMYAVATART, &CSkypeProto::SetMyAvatar);
+ // service to get from protocol chat buddy info
+ this->CreateServiceObj(MS_GC_PROTO_GETTOOLTIPTEXT, &CSkypeProto::SkypeGCGetToolTipText);
}