From c2034f3993ab0e6f4550f3059b3229bc319b6b56 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 3 Jun 2014 11:20:22 +0200 Subject: fixincludeguards: fix include guards Change-Id: Ie6e8d4272b0b1d0d2ce93bcbc2e818a9eac1a56b Reviewed-on: https://gerrit.libreoffice.org/9629 Reviewed-by: Thomas Arnhold Tested-by: Thomas Arnhold --- extensions/test/ole/unoTocomCalls/XCallback_Impl/Callback.h | 6 +++--- extensions/test/ole/unoTocomCalls/XCallback_Impl/Simple.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'extensions/test') 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: */ -- cgit