summaryrefslogtreecommitdiff
path: root/plugins/StopSpamMod/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-09-16 14:27:58 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-09-16 14:27:58 +0000
commit3d60e28ce573bfd28286d108eeb43ec29bf44d48 (patch)
tree809f1a8ef1739badd72137422324bfd9bdaeec06 /plugins/StopSpamMod/src
parent376a1a5f4c37183a64aa83b0225ce9bb20c8605b (diff)
removed not needed _MSC_VER checks
removed double comstant from modern warning fix git-svn-id: http://svn.miranda-ng.org/main/trunk@6087 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamMod/src')
-rwxr-xr-xplugins/StopSpamMod/src/utilities.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/StopSpamMod/src/utilities.cpp b/plugins/StopSpamMod/src/utilities.cpp
index 46707c67fa..73ab682878 100755
--- a/plugins/StopSpamMod/src/utilities.cpp
+++ b/plugins/StopSpamMod/src/utilities.cpp
@@ -222,13 +222,7 @@ tstring GetContactUid(HANDLE hContact, tstring Protocol)
mir_free((void *)ci.pszVal);
break;
case CNFT_DWORD:
-#if defined(_MSC_VER) && _MSC_VER >= 1300
-
- _itoa_s(ci.dVal,aUid,32,10);
-#else
- _itoa(ci.dVal,aUid,10);
-
-#endif
+ _itoa_s(ci.dVal,aUid,32,10);
OemToChar(aUid, dUid);
Uid=dUid;
break;