diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-11-27 14:41:16 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-11-28 20:53:40 +0200 |
commit | a3ce60eb3c8bb5c69ab41556398efa8316286477 (patch) | |
tree | a9600fdf96ab53a1aef150fd9c4a1e8c23b9eb90 /extensions/source | |
parent | abfe16cec61eae33c64cb1901f0fc740b0466f60 (diff) |
We only support MSVC 2008 (_MSC_VER 1500) or later
We can drop or simplify many conditionals.
Change-Id: I37e820e515cc09845c30b62c89ddb3b6ff370f97
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/activex/SOActionsApproval.cxx | 2 | ||||
-rw-r--r-- | extensions/source/activex/SOActionsApproval.h | 6 | ||||
-rw-r--r-- | extensions/source/activex/SOActiveX.h | 2 | ||||
-rw-r--r-- | extensions/source/activex/SOComWindowPeer.cxx | 2 | ||||
-rw-r--r-- | extensions/source/activex/SOComWindowPeer.h | 6 | ||||
-rw-r--r-- | extensions/source/activex/SODispatchInterceptor.cxx | 2 | ||||
-rw-r--r-- | extensions/source/activex/SODispatchInterceptor.h | 6 | ||||
-rw-r--r-- | extensions/source/activex/StdAfx2.cxx | 2 | ||||
-rw-r--r-- | extensions/source/activex/StdAfx2.h | 4 | ||||
-rw-r--r-- | extensions/source/activex/so_activex.rc | 4 | ||||
-rw-r--r-- | extensions/source/ole/ole2uno.hxx | 6 | ||||
-rw-r--r-- | extensions/source/ole/oledll.cxx | 2 | ||||
-rw-r--r-- | extensions/source/ole/oleobjw.hxx | 2 | ||||
-rw-r--r-- | extensions/source/ole/olethread.cxx | 2 | ||||
-rw-r--r-- | extensions/source/ole/servprov.cxx | 2 | ||||
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 2 |
16 files changed, 23 insertions, 29 deletions
diff --git a/extensions/source/activex/SOActionsApproval.cxx b/extensions/source/activex/SOActionsApproval.cxx index cb18c84dae28..d184d49d65e4 100644 --- a/extensions/source/activex/SOActionsApproval.cxx +++ b/extensions/source/activex/SOActionsApproval.cxx @@ -37,7 +37,7 @@ STDMETHODIMP SOActionsApproval::InterfaceSupportsErrorInfo(REFIID riid) for (int i=0;i<SAL_N_ELEMENTS(arr);i++) { -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER if (InlineIsEqualGUID(*arr[i],riid)) #else if (::ATL::InlineIsEqualGUID(*arr[i],riid)) diff --git a/extensions/source/activex/SOActionsApproval.h b/extensions/source/activex/SOActionsApproval.h index 1790c782448d..de2cf52f24cc 100644 --- a/extensions/source/activex/SOActionsApproval.h +++ b/extensions/source/activex/SOActionsApproval.h @@ -22,16 +22,16 @@ #ifndef __SODOCUMENTEVENTLISTENER_H_ #define __SODOCUMENTEVENTLISTENER_H_ -#if _MSC_VER > 1000 +#ifdef _MSC_VER #pragma once -#endif // _MSC_VER > 1000 +#endif #include "resource.h" // main symbols #include <ExDispID.h> #include <ExDisp.h> #include <shlguid.h> -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER #undef _DEBUG #endif diff --git a/extensions/source/activex/SOActiveX.h b/extensions/source/activex/SOActiveX.h index e2e5b68de617..4bef47a98765 100644 --- a/extensions/source/activex/SOActiveX.h +++ b/extensions/source/activex/SOActiveX.h @@ -34,7 +34,7 @@ #include <ExDisp.h> #include <shlguid.h> -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER #undef _DEBUG #endif #include <atlctl.h> diff --git a/extensions/source/activex/SOComWindowPeer.cxx b/extensions/source/activex/SOComWindowPeer.cxx index a9d6379ce4cf..298e32014e66 100644 --- a/extensions/source/activex/SOComWindowPeer.cxx +++ b/extensions/source/activex/SOComWindowPeer.cxx @@ -36,7 +36,7 @@ STDMETHODIMP SOComWindowPeer::InterfaceSupportsErrorInfo(REFIID riid) for (int i=0;i<SAL_N_ELEMENTS(arr);i++) { -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER if (InlineIsEqualGUID(*arr[i],riid)) #else if (::ATL::InlineIsEqualGUID(*arr[i],riid)) diff --git a/extensions/source/activex/SOComWindowPeer.h b/extensions/source/activex/SOComWindowPeer.h index d8c4d2d83a5d..0e8dc37a9684 100644 --- a/extensions/source/activex/SOComWindowPeer.h +++ b/extensions/source/activex/SOComWindowPeer.h @@ -22,16 +22,16 @@ #ifndef __SOCOMWINDOWPEER_H_ #define __SOCOMWINDOWPEER_H_ -#if _MSC_VER > 1000 +#ifdef _MSC_VER #pragma once -#endif // _MSC_VER > 1000 +#endif #include "resource.h" // main symbols #include <ExDispID.h> #include <ExDisp.h> #include <shlguid.h> -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER #undef _DEBUG #endif #include <atlctl.h> diff --git a/extensions/source/activex/SODispatchInterceptor.cxx b/extensions/source/activex/SODispatchInterceptor.cxx index 6ac0e8a61a82..4663d3f78ccc 100644 --- a/extensions/source/activex/SODispatchInterceptor.cxx +++ b/extensions/source/activex/SODispatchInterceptor.cxx @@ -39,7 +39,7 @@ STDMETHODIMP SODispatchInterceptor::InterfaceSupportsErrorInfo(REFIID riid) for (int i=0;i<SAL_N_ELEMENTS(arr);i++) { -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER if (InlineIsEqualGUID(*arr[i],riid)) #else if (::ATL::InlineIsEqualGUID(*arr[i],riid)) diff --git a/extensions/source/activex/SODispatchInterceptor.h b/extensions/source/activex/SODispatchInterceptor.h index e90bbefec4e9..d873c6b41eac 100644 --- a/extensions/source/activex/SODispatchInterceptor.h +++ b/extensions/source/activex/SODispatchInterceptor.h @@ -22,16 +22,16 @@ #ifndef __SODISPATCHINTERCEPTOR_H_ #define __SODISPATCHINTERCEPTOR_H_ -#if _MSC_VER > 1000 +#ifdef _MSC_VER #pragma once -#endif // _MSC_VER > 1000 +#endif #include "resource.h" // main symbols #include <ExDispID.h> #include <ExDisp.h> #include <shlguid.h> -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER #undef _DEBUG #endif #include <atlctl.h> diff --git a/extensions/source/activex/StdAfx2.cxx b/extensions/source/activex/StdAfx2.cxx index a2bfea986072..82a8f5454715 100644 --- a/extensions/source/activex/StdAfx2.cxx +++ b/extensions/source/activex/StdAfx2.cxx @@ -30,7 +30,7 @@ #include <statreg.h> #endif -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER #undef _DEBUG #endif diff --git a/extensions/source/activex/StdAfx2.h b/extensions/source/activex/StdAfx2.h index 18503222546c..c1ef7e523db4 100644 --- a/extensions/source/activex/StdAfx2.h +++ b/extensions/source/activex/StdAfx2.h @@ -24,9 +24,9 @@ #if !defined(AFX_STDAFX_H__C1799EA0_62CC_44DE_A2DD_C9F0410FF7F1__INCLUDED_) #define AFX_STDAFX_H__C1799EA0_62CC_44DE_A2DD_C9F0410FF7F1__INCLUDED_ -#if _MSC_VER > 1000 +#ifdef _MSC_VER #pragma once -#endif // _MSC_VER > 1000 +#endif #define STRICT #ifndef _WIN32_WINNT diff --git a/extensions/source/activex/so_activex.rc b/extensions/source/activex/so_activex.rc index 1bc77e36b7d8..4f7246e67b75 100644 --- a/extensions/source/activex/so_activex.rc +++ b/extensions/source/activex/so_activex.rc @@ -25,15 +25,11 @@ // // Generated from the TEXTINCLUDE 2 resource. // -#if defined(_MSC_VER) && (_MSC_VER < 1500) -#include "winres.h" -#else #define WINVER 0x0500 #include <winresrc.h> #define LB_ADDSTRING (WM_USER+1) #define CB_ADDSTRING (WM_USER+3) #define IDC_STATIC (-1) -#endif ///////////////////////////////////////////////////////////////////////////// #undef APSTUDIO_READONLY_SYMBOLS diff --git a/extensions/source/ole/ole2uno.hxx b/extensions/source/ole/ole2uno.hxx index 342d28bb5e8d..5b281a57d9cb 100644 --- a/extensions/source/ole/ole2uno.hxx +++ b/extensions/source/ole/ole2uno.hxx @@ -21,9 +21,9 @@ #define _OLE2UNO_HXX -#if _MSC_VER > 1000 +#ifdef _MSC_VER #pragma once -#endif // _MSC_VER > 1000 +#endif #define STRICT #ifndef _WIN32_WINNT @@ -41,9 +41,7 @@ #pragma warning (disable:4548) #include <tchar.h> -#if (_MSC_VER >= 1200) || defined(__MINGW32__) #include <dispex.h> -#endif #include <tools/presys.h> #include <list> diff --git a/extensions/source/ole/oledll.cxx b/extensions/source/ole/oledll.cxx index 8109f49ec9de..a4b75951ddf0 100644 --- a/extensions/source/ole/oledll.cxx +++ b/extensions/source/ole/oledll.cxx @@ -25,7 +25,7 @@ #pragma warning (push,1) #pragma warning (disable:4548) -#if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(_DEBUG_RUNTIME) +#if defined(_MSC_VER) && !defined(_DEBUG_RUNTIME) #undef _DEBUG #endif #ifdef __MINGW32__ diff --git a/extensions/source/ole/oleobjw.hxx b/extensions/source/ole/oleobjw.hxx index b84f20c5d649..f10a95acdf59 100644 --- a/extensions/source/ole/oleobjw.hxx +++ b/extensions/source/ole/oleobjw.hxx @@ -24,7 +24,7 @@ #include <tools/presys.h> #define _WIN32_WINNT 0x0403 -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER #undef _DEBUG // why? #endif #include <atlbase.h> diff --git a/extensions/source/ole/olethread.cxx b/extensions/source/ole/olethread.cxx index eda5aee6ffe9..a7e5fc88ae9b 100644 --- a/extensions/source/ole/olethread.cxx +++ b/extensions/source/ole/olethread.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#if defined _MSC_VER && ( _MSC_VER >= 1200 ) +#ifdef _MSC_VER #define _WIN32_WINNT 0x0400 #endif diff --git a/extensions/source/ole/servprov.cxx b/extensions/source/ole/servprov.cxx index e8f71955cf98..10fb507d478a 100644 --- a/extensions/source/ole/servprov.cxx +++ b/extensions/source/ole/servprov.cxx @@ -38,7 +38,7 @@ #include <tools/presys.h> #define _WIN32_WINNT 0x0403 -#if defined(_MSC_VER) && (_MSC_VER >= 1300) +#ifdef _MSC_VER #undef _DEBUG #endif #include <atlbase.h> diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 95d9cd6a3b5f..069da1ed98b7 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -72,7 +72,7 @@ using namespace com::sun::star::reflection; using ::rtl::OUString; -#if _MSC_VER < 1200 +#ifndef _MSC_VER extern "C" const GUID IID_IDispatchEx; #endif |