summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-04-19 18:42:40 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-04-19 18:42:40 +0300
commit9025662a393912ea288105ca43f500be79b51985 (patch)
treec9062ad048d4644cc395db90d1d2bdeb0b9855ed
parent624c9066d85c4da900cf440ca6066f86ef0b044d (diff)
more EV_PROTO_ONOPTIONS removed
-rw-r--r--protocols/Omegle/src/proto.cpp3
-rw-r--r--protocols/Sametime/src/sametime_proto.cpp7
2 files changed, 0 insertions, 10 deletions
diff --git a/protocols/Omegle/src/proto.cpp b/protocols/Omegle/src/proto.cpp
index a09c8f491c..470a0d70cc 100644
--- a/protocols/Omegle/src/proto.cpp
+++ b/protocols/Omegle/src/proto.cpp
@@ -141,9 +141,6 @@ int OmegleProto::OnEvent(PROTOEVENTTYPE event, WPARAM wParam, LPARAM lParam)
case EV_PROTO_ONEXIT:
return OnPreShutdown(wParam, lParam);
- case EV_PROTO_ONOPTIONS:
- return OnOptionsInit(wParam, lParam);
-
case EV_PROTO_ONCONTACTDELETED:
return OnContactDeleted(wParam, lParam);
}
diff --git a/protocols/Sametime/src/sametime_proto.cpp b/protocols/Sametime/src/sametime_proto.cpp
index 6b34208431..94eb1a97d2 100644
--- a/protocols/Sametime/src/sametime_proto.cpp
+++ b/protocols/Sametime/src/sametime_proto.cpp
@@ -295,13 +295,6 @@ int CSametimeProto::UserIsTyping(MCONTACT hContact, int type)
int CSametimeProto::OnEvent(PROTOEVENTTYPE iEventType, WPARAM wParam, LPARAM lParam)
{
- switch (iEventType) {
- case EV_PROTO_ONOPTIONS:
- debugLogW(L"CSametimeProto::OnEvent() EV_PROTO_ONOPTIONS");
- OptInit(wParam, lParam);
- break;
- }
-
return TRUE;
}