diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-02-23 19:54:57 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-02-23 19:54:57 +0000 |
commit | 326215e3557c3fdd0595d585cb9f645edeffedb9 (patch) | |
tree | 6bc8d24eaf4966d47fcfea86493f3830beacc454 /protocols/Tox/src/tox_proto.cpp | |
parent | a142d261af1f740156898be29c3724b8a517a77a (diff) |
Tox: group chats are disabled, untill it won't be rewritten in tox core
git-svn-id: http://svn.miranda-ng.org/main/trunk@12253 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.cpp')
-rw-r--r-- | protocols/Tox/src/tox_proto.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index 117c7f8ec9..1a22017a6a 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -49,8 +49,8 @@ CToxProto::CToxProto(const char* protoName, const TCHAR* userName) : CreateProtoService(PS_SETMYNICKNAME, &CToxProto::SetMyNickname);
// chat rooms
- CreateProtoService(PS_JOINCHAT, &CToxProto::OnJoinChatRoom);
- CreateProtoService(PS_LEAVECHAT, &CToxProto::OnLeaveChatRoom);
+ //CreateProtoService(PS_JOINCHAT, &CToxProto::OnJoinChatRoom);
+ //CreateProtoService(PS_LEAVECHAT, &CToxProto::OnLeaveChatRoom);
// transfers
transfers = new CTransferList();
@@ -290,8 +290,8 @@ int __cdecl CToxProto::OnEvent(PROTOEVENTTYPE iEventType, WPARAM wParam, LPARAM case EV_PROTO_ONCONTACTDELETED:
return OnContactDeleted(wParam, lParam);
- case EV_PROTO_ONMENU:
- return OnInitStatusMenu();
+ //case EV_PROTO_ONMENU:
+ // return OnInitStatusMenu();
}
return 1;
|