diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-07-14 05:37:24 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-07-14 05:44:15 +0200 |
commit | 1340890ccdff010c827a8e98eb2eaf1a2ec49a2d (patch) | |
tree | 92cf2ad652a6a8366317b02129e510d0dc874c82 /extensions | |
parent | 5a7e8389f0720f1872f36af401c6b3af7968b7ea (diff) |
simplify include guards
Change-Id: Id4210229b20a1d54b680ff1a2ccbcdd3684ecf5f
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/activex/SOActionsApproval.h | 2 | ||||
-rw-r--r-- | extensions/source/activex/SOComWindowPeer.h | 2 | ||||
-rw-r--r-- | extensions/source/activex/SODispatchInterceptor.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/activex/SOActionsApproval.h b/extensions/source/activex/SOActionsApproval.h index a5570312864d..ab756e58c8c9 100644 --- a/extensions/source/activex/SOActionsApproval.h +++ b/extensions/source/activex/SOActionsApproval.h @@ -3,7 +3,7 @@ // ////////////////////////////////////////////////////////////////////// -#if !defined __SODOCUMENTEVENTLISTENER_H_ +#ifndef __SODOCUMENTEVENTLISTENER_H_ #define __SODOCUMENTEVENTLISTENER_H_ #if _MSC_VER > 1000 diff --git a/extensions/source/activex/SOComWindowPeer.h b/extensions/source/activex/SOComWindowPeer.h index c819e17a81ea..c67e2811a0e4 100644 --- a/extensions/source/activex/SOComWindowPeer.h +++ b/extensions/source/activex/SOComWindowPeer.h @@ -3,7 +3,7 @@ // ////////////////////////////////////////////////////////////////////// -#if !defined __SOCOMWINDOWPEER_H_ +#ifndef __SOCOMWINDOWPEER_H_ #define __SOCOMWINDOWPEER_H_ #if _MSC_VER > 1000 diff --git a/extensions/source/activex/SODispatchInterceptor.h b/extensions/source/activex/SODispatchInterceptor.h index 538b12f24d2e..0a6cbd78353f 100644 --- a/extensions/source/activex/SODispatchInterceptor.h +++ b/extensions/source/activex/SODispatchInterceptor.h @@ -3,7 +3,7 @@ // ////////////////////////////////////////////////////////////////////// -#if !defined __SODISPATCHINTERCEPTOR_H_ +#ifndef __SODISPATCHINTERCEPTOR_H_ #define __SODISPATCHINTERCEPTOR_H_ #if _MSC_VER > 1000 |