diff options
author | Gluzskiy Alexandr <sss123next@gmail.com> | 2010-02-15 04:47:05 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@gmail.com> | 2010-02-15 04:47:05 +0300 |
commit | 0e3db0eb1dfe2cb30a14f0198fb5aa22f00a4b26 (patch) | |
tree | f07bfb0a964d6945ccbd15c637939c1fe9169279 /stopspam_mod/stopspam.cpp | |
parent | 9b085fe9518691d746fe9931ccc6b927272d19e1 (diff) |
gcc(mingw) compilation fix
Diffstat (limited to 'stopspam_mod/stopspam.cpp')
-rw-r--r-- | stopspam_mod/stopspam.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stopspam_mod/stopspam.cpp b/stopspam_mod/stopspam.cpp index e3cdae7..a0c821b 100644 --- a/stopspam_mod/stopspam.cpp +++ b/stopspam_mod/stopspam.cpp @@ -174,7 +174,7 @@ MIRANDA_HOOK_EVENT(ME_DB_EVENT_FILTER_ADD, w, l) msg = 0; //is it useful ?
}
- if(gbCaseInsensitive?(!stricmp(message.c_str(), (variables_parse(gbAnswer, hContact).c_str()))):( !_tcscmp(message.c_str(), (variables_parse(gbAnswer, hContact).c_str()))))
+ if(gbCaseInsensitive?(!Stricmp(message.c_str(), (variables_parse(gbAnswer, hContact).c_str()))):( !_tcscmp(message.c_str(), (variables_parse(gbAnswer, hContact).c_str()))))
{
// unhide contact
DBDeleteContactSetting(hContact, "CList", "Hidden");
|