diff options
author | George Hazan <ghazan@miranda.im> | 2016-12-06 21:04:13 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-12-06 21:04:26 +0300 |
commit | 2edf7b43622a8f29a0bfaf578c30127f933fe2c9 (patch) | |
tree | 3aa0d64599e4b2e3865559854e2729b5a7c9927d /plugins/New_GPG/src/messages.cpp | |
parent | d47fc1abf17049432e70f436cfd935942a28b51c (diff) |
bIsMiranda09 - useless variable removed
Diffstat (limited to 'plugins/New_GPG/src/messages.cpp')
-rwxr-xr-x | plugins/New_GPG/src/messages.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/New_GPG/src/messages.cpp b/plugins/New_GPG/src/messages.cpp index dc4f95277b..2469cd3692 100755 --- a/plugins/New_GPG/src/messages.cpp +++ b/plugins/New_GPG/src/messages.cpp @@ -664,7 +664,7 @@ void SendMsgSvc_func(MCONTACT hContact, char *msg, DWORD flags) DWORD code; wstring file = toUTF16(get_random(10)), path; std::vector<std::wstring> cmd; - extern bool bJabberAPI, bIsMiranda09; + extern bool bJabberAPI; { wchar_t *tmp2; { @@ -675,7 +675,7 @@ void SendMsgSvc_func(MCONTACT hContact, char *msg, DWORD flags) ProtoChainSend(hContact, PSS_MESSAGE, flags, (LPARAM)msg); return; } - if (!bJabberAPI || !bIsMiranda09) //force jabber to handle encrypted message by itself + if (!bJabberAPI) //force jabber to handle encrypted message by itself { cmd.push_back(L"--comment"); cmd.push_back(L"\"\""); |