diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 14:27:58 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 14:27:58 +0000 |
commit | 3d60e28ce573bfd28286d108eeb43ec29bf44d48 (patch) | |
tree | 809f1a8ef1739badd72137422324bfd9bdaeec06 /plugins/Exchange | |
parent | 376a1a5f4c37183a64aa83b0225ce9bb20c8605b (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/Exchange')
-rw-r--r-- | plugins/Exchange/Exchange_10.vcxproj | 4 | ||||
-rw-r--r-- | plugins/Exchange/Exchange_11.vcxproj | 4 | ||||
-rw-r--r-- | plugins/Exchange/src/MirandaExchange.h | 2 | ||||
-rw-r--r-- | plugins/Exchange/src/StdAfx.h | 3 |
4 files changed, 0 insertions, 13 deletions
diff --git a/plugins/Exchange/Exchange_10.vcxproj b/plugins/Exchange/Exchange_10.vcxproj index 6ded870fa3..d6602a2b7e 100644 --- a/plugins/Exchange/Exchange_10.vcxproj +++ b/plugins/Exchange/Exchange_10.vcxproj @@ -113,7 +113,6 @@ <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
@@ -143,7 +142,6 @@ <WarningLevel>Level3</WarningLevel>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
@@ -173,7 +171,6 @@ <StringPooling>true</StringPooling>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
@@ -202,7 +199,6 @@ <Optimization>Disabled</Optimization>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
diff --git a/plugins/Exchange/Exchange_11.vcxproj b/plugins/Exchange/Exchange_11.vcxproj index 261149983d..7ec1b7447b 100644 --- a/plugins/Exchange/Exchange_11.vcxproj +++ b/plugins/Exchange/Exchange_11.vcxproj @@ -117,7 +117,6 @@ <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
@@ -148,7 +147,6 @@ <WarningLevel>Level3</WarningLevel>
<DisableSpecificWarnings>4996;%(DisableSpecificWarnings)</DisableSpecificWarnings>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
@@ -177,7 +175,6 @@ <StringPooling>true</StringPooling>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
@@ -205,7 +202,6 @@ <Optimization>Disabled</Optimization>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
- <ExceptionHandling>false</ExceptionHandling>
<PrecompiledHeaderFile>
</PrecompiledHeaderFile>
</ClCompile>
diff --git a/plugins/Exchange/src/MirandaExchange.h b/plugins/Exchange/src/MirandaExchange.h index 47f76d2107..17edac4a92 100644 --- a/plugins/Exchange/src/MirandaExchange.h +++ b/plugins/Exchange/src/MirandaExchange.h @@ -47,9 +47,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define DEBUG
-#if _MSC_VER > 1000
#pragma once
-#endif // _MSC_VER > 1000
#define MAX_NUMBER_OF_HEADERS 512
diff --git a/plugins/Exchange/src/StdAfx.h b/plugins/Exchange/src/StdAfx.h index 82627ab92d..052f158ce0 100644 --- a/plugins/Exchange/src/StdAfx.h +++ b/plugins/Exchange/src/StdAfx.h @@ -6,10 +6,7 @@ #if !defined(AFX_STDAFX_H__B170AF8E_BA64_4233_BF83_B4F0D1F3B775__INCLUDED_)
#define AFX_STDAFX_H__B170AF8E_BA64_4233_BF83_B4F0D1F3B775__INCLUDED_
-#if _MSC_VER > 1000
#pragma once
-#endif // _MSC_VER > 1000
-
// Insert your headers here
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|