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/test/ole | |
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/test/ole')
-rw-r--r-- | extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h | 6 | ||||
-rw-r--r-- | extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h | 6 |
2 files changed, 6 insertions, 6 deletions
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: */ |