diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 18:37:53 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 18:37:53 +0000 |
commit | e2d7ebd6315a810bd4ea54f1088b84d09c3ca5d2 (patch) | |
tree | 736bb8768f17b26904cdf8e0fe6fb47e1dcb892e /protocols/Tox/src | |
parent | a882eddcba5fd22adab1454c8d2ff9c224bc7aa7 (diff) |
replace stricmp to mir_strcmpi
git-svn-id: http://svn.miranda-ng.org/main/trunk@13760 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src')
-rw-r--r-- | protocols/Tox/src/tox_chatrooms.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_chatrooms.cpp b/protocols/Tox/src/tox_chatrooms.cpp index 12600ec239..27aa4c7444 100644 --- a/protocols/Tox/src/tox_chatrooms.cpp +++ b/protocols/Tox/src/tox_chatrooms.cpp @@ -90,7 +90,7 @@ int CToxProto::OnGroupChatEventHook(WPARAM, LPARAM lParam) int CToxProto::OnGroupChatMenuHook(WPARAM, LPARAM lParam)
{
GCMENUITEMS *gcmi = (GCMENUITEMS*)lParam;
- if (stricmp(gcmi->pszModule, this->m_szModuleName) != 0)
+ if (mir_strcmpi(gcmi->pszModule, this->m_szModuleName) != 0)
{
return 0;
}
|