diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-12-18 20:03:40 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-12-18 20:03:40 +0000 |
commit | a76ced5d4ff852dcbe7a96824ca1bb6dc219a1fd (patch) | |
tree | b8f48fe0e7aed33c9a7cf48800bd351f4cf3c50b /protocols/Skype/src/skype_proto.cpp | |
parent | b218fc95603571df3e9a6181d7e0de7f37e3bcc4 (diff) |
- first approach of group chat support
git-svn-id: http://svn.miranda-ng.org/main/trunk@2764 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.cpp')
-rw-r--r-- | protocols/Skype/src/skype_proto.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp index c4bd2c6a30..aba0cc485b 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -343,6 +343,9 @@ int __cdecl CSkypeProto::OnEvent(PROTOEVENTTYPE eventType, WPARAM wParam, LPA case EV_PROTO_ONEXIT:
return this->OnPreShutdown(wParam, lParam);
+ case EV_PROTO_ONMENU:
+ this->OnInitStatusMenu();
+
case EV_PROTO_ONCONTACTDELETED:
return this->OnContactDeleted(wParam, lParam);
}
|