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 /sc/source/ui/inc | |
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 'sc/source/ui/inc')
-rw-r--r-- | sc/source/ui/inc/colorformat.hxx | 5 | ||||
-rw-r--r-- | sc/source/ui/inc/datastreamdlg.hxx | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sc/source/ui/inc/colorformat.hxx b/sc/source/ui/inc/colorformat.hxx index f3d40dd5013e..cc261d1855d3 100644 --- a/sc/source/ui/inc/colorformat.hxx +++ b/sc/source/ui/inc/colorformat.hxx @@ -7,6 +7,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_SC_SOURCE_UI_INC_COLORFORMAT_HXX +#define INCLUDED_SC_SOURCE_UI_INC_COLORFORMAT_HXX + #include <vcl/button.hxx> #include <vcl/dialog.hxx> #include <vcl/fixed.hxx> @@ -51,4 +54,6 @@ public: ScDataBarFormatData* GetData(); }; +#endif // INCLUDED_SC_SOURCE_UI_INC_COLORFORMAT_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/ui/inc/datastreamdlg.hxx b/sc/source/ui/inc/datastreamdlg.hxx index 947f68389500..bde22e836ebf 100644 --- a/sc/source/ui/inc/datastreamdlg.hxx +++ b/sc/source/ui/inc/datastreamdlg.hxx @@ -7,6 +7,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_SC_SOURCE_UI_INC_DATASTREAMDLG_HXX +#define INCLUDED_SC_SOURCE_UI_INC_DATASTREAMDLG_HXX + #include <sal/config.h> #include <rtl/ref.hxx> @@ -59,4 +62,6 @@ public: } +#endif // INCLUDED_SC_SOURCE_UI_INC_DATASTREAMDLG_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |