diff options
author | watcher <watcherhd@gmail.com> | 2016-11-20 19:54:00 +0200 |
---|---|---|
committer | watcher <watcherhd@gmail.com> | 2016-11-20 19:58:51 +0200 |
commit | 087c9e817a1c982e53ec092dc56b8ed925ad9b90 (patch) | |
tree | 43dfe17fe2c72a079e86f957b5d34b237137df73 /protocols | |
parent | f27f9ca732880d3178dd701b063e45edbe525b40 (diff) |
unneeded check for stdchat removed (nothing to check for anymore)
langpacks updated accordingly
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/JabberG/src/jabber_misc.cpp | 10 | ||||
-rw-r--r-- | protocols/MRA/src/MraChat.cpp | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/protocols/JabberG/src/jabber_misc.cpp b/protocols/JabberG/src/jabber_misc.cpp index c6e995a074..1aba22e73c 100644 --- a/protocols/JabberG/src/jabber_misc.cpp +++ b/protocols/JabberG/src/jabber_misc.cpp @@ -41,16 +41,6 @@ void CJabberProto::AddContactToRoster(const wchar_t *jid, const wchar_t *nick, c }
///////////////////////////////////////////////////////////////////////////////
-// JabberChatDllError() - missing CHAT.DLL
-
-void JabberChatDllError()
-{
- MessageBox(NULL,
- TranslateT("Chat plugin is required for conferences. Install it before chatting"),
- TranslateT("Jabber Error"), MB_OK | MB_SETFOREGROUND);
-}
-
-///////////////////////////////////////////////////////////////////////////////
// JabberDBAddAuthRequest()
void CJabberProto::DBAddAuthRequest(const wchar_t *jid, const wchar_t *nick)
diff --git a/protocols/MRA/src/MraChat.cpp b/protocols/MRA/src/MraChat.cpp index 936ebdcb74..de0a69c52b 100644 --- a/protocols/MRA/src/MraChat.cpp +++ b/protocols/MRA/src/MraChat.cpp @@ -6,10 +6,6 @@ static LPWSTR lpwszStatuses[] = { LPGENW("Owners"), LPGENW("Inviter"), LPGENW("V #define MRA_CHAT_STATUS_INVITER 1
#define MRA_CHAT_STATUS_VISITOR 2
-void CMraProto::MraChatDllError()
-{
- MessageBox(NULL, TranslateT("Chat plugin is required for conferences. Install it before chatting"), m_tszUserName, (MB_OK | MB_ICONWARNING));
-}
bool CMraProto::MraChatRegister()
{
|