diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-06-03 11:20:22 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-06 19:16:40 +0000 |
commit | c2034f3993ab0e6f4550f3059b3229bc319b6b56 (patch) | |
tree | a9686292b74bc75bfeb09a733f08cf97183631a1 /extensions | |
parent | 0ed60a973753d143158c5b17c781bac07bfc3827 (diff) |
fixincludeguards: fix include guards
Change-Id: Ie6e8d4272b0b1d0d2ce93bcbc2e818a9eac1a56b
Reviewed-on: https://gerrit.libreoffice.org/9629
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'extensions')
4 files changed, 12 insertions, 12 deletions
diff --git a/extensions/source/activex/SOActionsApproval.h b/extensions/source/activex/SOActionsApproval.h index ca99b45c9578..68d9778b7bc1 100644 --- a/extensions/source/activex/SOActionsApproval.h +++ b/extensions/source/activex/SOActionsApproval.h @@ -19,8 +19,8 @@ // SOActionsApproval.h: Definition of the SOActionsApproval class -#ifndef __SODOCUMENTEVENTLISTENER_H_ -#define __SODOCUMENTEVENTLISTENER_H_ +#ifndef INCLUDED_EXTENSIONS_SOURCE_ACTIVEX_SOACTIONSAPPROVAL_H +#define INCLUDED_EXTENSIONS_SOURCE_ACTIVEX_SOACTIONSAPPROVAL_H #ifdef _MSC_VER #pragma once @@ -90,6 +90,6 @@ DECLARE_REGISTRY_RESOURCEID(IDR_SODOCUMENTEVENTLISTENER) } }; -#endif // __SODOCUMENTEVENTLISTENER_H_ +#endif // INCLUDED_EXTENSIONS_SOURCE_ACTIVEX_SOACTIONSAPPROVAL_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/source/activex/SODispatchInterceptor.h b/extensions/source/activex/SODispatchInterceptor.h index 528eb3dba404..f0ec8c47b64d 100644 --- a/extensions/source/activex/SODispatchInterceptor.h +++ b/extensions/source/activex/SODispatchInterceptor.h @@ -19,8 +19,8 @@ // SODispatchInterceptor.h: Definition of the SODispatchInterceptor class -#ifndef __SODISPATCHINTERCEPTOR_H_ -#define __SODISPATCHINTERCEPTOR_H_ +#ifndef INCLUDED_EXTENSIONS_SOURCE_ACTIVEX_SODISPATCHINTERCEPTOR_H +#define INCLUDED_EXTENSIONS_SOURCE_ACTIVEX_SODISPATCHINTERCEPTOR_H #ifdef _MSC_VER #pragma once @@ -166,6 +166,6 @@ DECLARE_REGISTRY_RESOURCEID(IDR_SODISPATCHINTERCEPTOR) } }; -#endif // __SODISPATCHINTERCEPTOR_H_ +#endif // INCLUDED_EXTENSIONS_SOURCE_ACTIVEX_SODISPATCHINTERCEPTOR_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h index f200129ed883..810c1a8964c1 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h @@ -18,8 +18,8 @@ */ // Callback.h : Declaration of the CCallback -#ifndef __CALLBACK_H_ -#define __CALLBACK_H_ +#ifndef INCLUDED_EXTENSIONS_TEST_OLE_UNOTOCOMCALLS_XCALLBACK_IMPL_CALLBACK_H +#define INCLUDED_EXTENSIONS_TEST_OLE_UNOTOCOMCALLS_XCALLBACK_IMPL_CALLBACK_H #include "resource.h" @@ -123,7 +123,7 @@ public: STDMETHOD(func1)(); }; -#endif //__CALLBACK_H_ +#endif // INCLUDED_EXTENSIONS_TEST_OLE_UNOTOCOMCALLS_XCALLBACK_IMPL_CALLBACK_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h index e617ca6d763c..cf140245e969 100644 --- a/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h +++ b/extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h @@ -18,8 +18,8 @@ */ // Simple.h : Declaration of the CSimple -#ifndef __SIMPLE_H_ -#define __SIMPLE_H_ +#ifndef INCLUDED_EXTENSIONS_TEST_OLE_UNOTOCOMCALLS_XCALLBACK_IMPL_SIMPLE_H +#define INCLUDED_EXTENSIONS_TEST_OLE_UNOTOCOMCALLS_XCALLBACK_IMPL_SIMPLE_H #include "resource.h" @@ -53,6 +53,6 @@ public: STDMETHOD(func)( BSTR message); }; -#endif //__SIMPLE_H_ +#endif // INCLUDED_EXTENSIONS_TEST_OLE_UNOTOCOMCALLS_XCALLBACK_IMPL_SIMPLE_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |