diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-06-17 09:20:49 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-06-17 09:20:49 +0000 |
commit | 5b81eaa46fd18c6b3b0bf4a102b0f863232b6866 (patch) | |
tree | 0b10473f0092711b0bae86be0ad69e4d4d93ccae /protocols/Skype/src/skype_proto.cpp | |
parent | 5338cdcb3caa60be15a0c989fe3c453c521421e6 (diff) |
Skype: Password change dialog improvements. Fixed options button in Accounts dialog.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4996 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 b74811ddbc..68f55adb90 100644 --- a/protocols/Skype/src/skype_proto.cpp +++ b/protocols/Skype/src/skype_proto.cpp @@ -533,6 +533,9 @@ int __cdecl CSkypeProto::OnEvent(PROTOEVENTTYPE eventType, WPARAM wParam, LPARAM case EV_PROTO_ONEXIT:
return this->OnPreShutdown(wParam, lParam);
+ case EV_PROTO_ONOPTIONS:
+ return this->OnOptionsInit(wParam,lParam);
+
case EV_PROTO_ONCONTACTDELETED:
return this->OnContactDeleted(wParam, lParam);
|