diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-19 09:56:30 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-19 09:56:30 +0000 |
commit | 056715f5ecf44358d9a565a440a1af5a77bb802f (patch) | |
tree | 06e8c67f7f8b5094b372fe5cf6029c16f7c71f3a /plugins/StopSpamMod/src/utilities.cpp | |
parent | 9983ccb17775804f3985ed0d3c69852c7cad0348 (diff) |
- Stopspam mod and plus fixes for previous commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@3161 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamMod/src/utilities.cpp')
-rwxr-xr-x | plugins/StopSpamMod/src/utilities.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/StopSpamMod/src/utilities.cpp b/plugins/StopSpamMod/src/utilities.cpp index 84eeaf79f0..4b596456bf 100755 --- a/plugins/StopSpamMod/src/utilities.cpp +++ b/plugins/StopSpamMod/src/utilities.cpp @@ -276,17 +276,17 @@ BOOL IsUrlContains(TCHAR * Str) const int CountUrl=11; const TCHAR URL[CountUrl][5]= { - _T("http"), - _T("www"), - _T(".ru"), - _T(".com"), - _T(".de"), - _T(".cz"), - _T(".org"), - _T(".net"), - _T(".su"), - _T(".ua"), - _T(".tv") + L"http", + L"www", + L".ru", + L".com", + L".de", + L".cz", + L".org", + L".net", + L".su", + L".ua", + L".tv" }; if(Str && _tcslen(Str)>0) { |