diff options
author | Jens Carl <j.carl43@gmx.de> | 2014-05-30 21:34:21 +0000 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-01 16:08:25 +0000 |
commit | 8f0160a10dd2a5746c531040ffbf638e356f6d5d (patch) | |
tree | 434f81329f349b1819afcfc28f758610673392e4 /sd | |
parent | f3e1f476e9cffb75d0620ab2dcfdc1ea077cd9d3 (diff) |
fdo#68849: Add header guards to all include files
Added header guards to files in directories sc/, sd/, slideshow/, and solenv/
Change-Id: Ib4577761644fe72f5ddb3c5060e629bf94d6e6e2
Reviewed-on: https://gerrit.libreoffice.org/9583
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/RemoteDialogClientBox.hxx | 5 | ||||
-rw-r--r-- | sd/source/ui/dlg/dlgassim.hxx | 5 | ||||
-rw-r--r-- | sd/source/ui/inc/unosrch.hxx | 5 | ||||
-rw-r--r-- | sd/source/ui/slideshow/SlideShowRestarter.hxx | 4 | ||||
-rw-r--r-- | sd/source/ui/unoidl/unohelp.hxx | 5 |
5 files changed, 24 insertions, 0 deletions
diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.hxx b/sd/source/ui/dlg/RemoteDialogClientBox.hxx index 7b2ac25ed533..ad7464d7eff6 100644 --- a/sd/source/ui/dlg/RemoteDialogClientBox.hxx +++ b/sd/source/ui/dlg/RemoteDialogClientBox.hxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SD_SOURCE_UI_DLG_REMOTEDIALOGCLIENTBOX_HXX +#define INCLUDED_SD_SOURCE_UI_DLG_REMOTEDIALOGCLIENTBOX_HXX + #include "rtl/ustring.hxx" #include "vcl/scrbar.hxx" #include "vcl/fixed.hxx" @@ -171,4 +174,6 @@ public: } +#endif // INCLUDED_SD_SOURCE_UI_DLG_REMOTEDIALOGCLIENTBOX_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sd/source/ui/dlg/dlgassim.hxx b/sd/source/ui/dlg/dlgassim.hxx index 11c888a13377..d3012b924b31 100644 --- a/sd/source/ui/dlg/dlgassim.hxx +++ b/sd/source/ui/dlg/dlgassim.hxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SD_SOURCE_UI_DLG_DLGASSIM_HXX +#define INCLUDED_SD_SOURCE_UI_DLG_DLGASSIM_HXX + #include "drawdoc.hxx" #include <svx/svdotext.hxx> #include <svtools/treelistbox.hxx> @@ -47,4 +50,6 @@ public: }; +#endif // INCLUDED_SD_SOURCE_UI_DLG_DLGASSIM_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sd/source/ui/inc/unosrch.hxx b/sd/source/ui/inc/unosrch.hxx index 3ab929d5d24b..c0f86aa773f0 100644 --- a/sd/source/ui/inc/unosrch.hxx +++ b/sd/source/ui/inc/unosrch.hxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SD_SOURCE_UI_INC_UNOSRCH_HXX +#define INCLUDED_SD_SOURCE_UI_INC_UNOSRCH_HXX + #include <com/sun/star/drawing/XShape.hpp> #include <com/sun/star/drawing/XDrawPage.hpp> #include <com/sun/star/text/XTextRange.hpp> @@ -138,4 +141,6 @@ public: virtual sal_Bool SAL_CALL hasElements() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; }; +#endif // INCLUDED_SD_SOURCE_UI_INC_UNOSRCH_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sd/source/ui/slideshow/SlideShowRestarter.hxx b/sd/source/ui/slideshow/SlideShowRestarter.hxx index 05d8fe69c468..6a216143bd8e 100644 --- a/sd/source/ui/slideshow/SlideShowRestarter.hxx +++ b/sd/source/ui/slideshow/SlideShowRestarter.hxx @@ -17,6 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SD_SOURCE_UI_SLIDESHOW_SLIDESHOWRESTARTER_HXX +#define INCLUDED_SD_SOURCE_UI_SLIDESHOW_SLIDESHOWRESTARTER_HXX #include "slideshow.hxx" #include "ViewShellBase.hxx" @@ -83,4 +85,6 @@ private: } // end of namespace sd +#endif // INCLUDED_SD_SOURCE_UI_SLIDESHOW_SLIDESHOWRESTARTER_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sd/source/ui/unoidl/unohelp.hxx b/sd/source/ui/unoidl/unohelp.hxx index 130fd0fc41e9..8b435962074f 100644 --- a/sd/source/ui/unoidl/unohelp.hxx +++ b/sd/source/ui/unoidl/unohelp.hxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SD_SOURCE_UI_UNOIDL_UNOHELP_HXX +#define INCLUDED_SD_SOURCE_UI_UNOIDL_UNOHELP_HXX + namespace sd { inline void bool2any( bool bBool, ::com::sun::star::uno::Any& rAny ) @@ -30,4 +33,6 @@ inline void bool2any( bool bBool, ::com::sun::star::uno::Any& rAny ) if( rType == ::getCppuType((const uno::Reference< xint >*)0) ) \ aAny <<= uno::Reference< xint >(this) +#endif // INCLUDED_SD_SOURCE_UI_UNOIDL_UNOHELP_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |