diff options
author | Jens Carl <j.carl43@gmx.de> | 2014-05-30 22:51:21 +0000 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-01 16:13:39 +0000 |
commit | e15732bc96c903b2e85bcc30c32fad2cceda5610 (patch) | |
tree | f445a7895f11d893684a5cdde8e32fbdd9086419 /svx/source/gallery2 | |
parent | 57217e1e9f995ec413e5eecaf171481373a0a8d0 (diff) |
fdo#68849: Add header guards to all include files
Added header guards to files in directory svx/
Change-Id: I1c2006bccf03c3057daf6ea2711c52a8c1f455f3
Reviewed-on: https://gerrit.libreoffice.org/9586
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'svx/source/gallery2')
-rw-r--r-- | svx/source/gallery2/codec.hxx | 5 | ||||
-rw-r--r-- | svx/source/gallery2/galbrws1.hxx | 5 | ||||
-rw-r--r-- | svx/source/gallery2/gallerydrawmodel.hxx | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/svx/source/gallery2/codec.hxx b/svx/source/gallery2/codec.hxx index 0230d7eabedb..2c7bf58b8c8a 100644 --- a/svx/source/gallery2/codec.hxx +++ b/svx/source/gallery2/codec.hxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SVX_SOURCE_GALLERY2_CODEC_HXX +#define INCLUDED_SVX_SOURCE_GALLERY2_CODEC_HXX + #include <sal/types.h> class SvStream; @@ -37,4 +40,6 @@ public: static bool IsCoded( SvStream& rStm, sal_uInt32& rVersion ); }; +#endif // INCLUDED_SVX_SOURCE_GALLERY2_CODEC_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/source/gallery2/galbrws1.hxx b/svx/source/gallery2/galbrws1.hxx index c4ac5709c745..e59653d83c09 100644 --- a/svx/source/gallery2/galbrws1.hxx +++ b/svx/source/gallery2/galbrws1.hxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SVX_SOURCE_GALLERY2_GALBRWS1_HXX +#define INCLUDED_SVX_SOURCE_GALLERY2_GALBRWS1_HXX + #include <vcl/lstbox.hxx> #include <vcl/button.hxx> #include <vcl/menu.hxx> @@ -133,4 +136,6 @@ public: bool KeyInput( const KeyEvent& rKEvt, Window* pWindow ); }; +#endif // INCLUDED_SVX_SOURCE_GALLERY2_GALBRWS1_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/svx/source/gallery2/gallerydrawmodel.hxx b/svx/source/gallery2/gallerydrawmodel.hxx index 88b206e64a2b..75dc966cd2f5 100644 --- a/svx/source/gallery2/gallerydrawmodel.hxx +++ b/svx/source/gallery2/gallerydrawmodel.hxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#ifndef INCLUDED_SVX_SOURCE_GALLERY2_GALLERYDRAWMODEL_HXX +#define INCLUDED_SVX_SOURCE_GALLERY2_GALLERYDRAWMODEL_HXX + #include <sfx2/objsh.hxx> class FmFormModel; @@ -34,4 +37,6 @@ private: FmFormModel* mpFormModel; }; +#endif // INCLUDED_SVX_SOURCE_GALLERY2_GALLERYDRAWMODEL_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |