diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-05-31 10:50:56 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-05-31 10:50:56 +0000 |
commit | 34d923a55939cdbb5265696b1e84b22eb3c0c95e (patch) | |
tree | 8a72ef78f8159c3c1a7c4a9ba7c8de73c0fae0eb /protocols/Skype/src/skype_proto.cpp | |
parent | b14c99cd412cee2957dcb65a2293d387c1041266 (diff) |
second approach of a chats reworking.
Note, new code may not work!
git-svn-id: http://svn.miranda-ng.org/main/trunk@4847 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.cpp')
-rw-r--r-- | protocols/Skype/src/skype_proto.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/protocols/Skype/src/skype_proto.cpp b/protocols/Skype/src/skype_proto.cpp index 587eb65735..af42905023 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -1,6 +1,8 @@ #include "skype_proto.h"
-CSkypeProto::CSkypeProto(const char* protoName, const TCHAR* userName) : Skype(1), skypeKitPort(8963)
+CSkypeProto::CSkypeProto(const char* protoName, const TCHAR* userName) :
+ Skype(1),
+ skypeKitPort(8963)
{
::ProtoConstructor(this, protoName, userName);
@@ -533,12 +535,12 @@ int __cdecl CSkypeProto::OnEvent(PROTOEVENTTYPE eventType, WPARAM wParam, LPARAM case EV_PROTO_ONEXIT:
return this->OnPreShutdown(wParam, lParam);
+ case EV_PROTO_ONCONTACTDELETED:
+ return this->OnContactDeleted(wParam, lParam);
+
case EV_PROTO_ONMENU:
this->OnInitStatusMenu();
break;
-
- case EV_PROTO_ONCONTACTDELETED:
- return this->OnContactDeleted(wParam, lParam);
}
return 1;
|