summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2014-05-30 22:09:54 +0000
committerThomas Arnhold <thomas@arnhold.org>2014-06-01 16:13:05 +0000
commit57217e1e9f995ec413e5eecaf171481373a0a8d0 (patch)
treec5be8a3370b2cc1bf8078e3d09d8a26d89fcbcb5 /svtools
parent8f0160a10dd2a5746c531040ffbf638e356f6d5d (diff)
fdo#68849: Add header guards to all include files
Added header guards to files in directories stoc/, and svtools/ Change-Id: Ib6691b0e3fa09d71696ab947d357e489eb35df66 Reviewed-on: https://gerrit.libreoffice.org/9584 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/toolbarmenuimp.hxx5
-rw-r--r--svtools/source/control/valueimp.hxx5
-rw-r--r--svtools/source/toolpanel/toolpaneldrawer.hxx4
3 files changed, 14 insertions, 0 deletions
diff --git a/svtools/source/control/toolbarmenuimp.hxx b/svtools/source/control/toolbarmenuimp.hxx
index 235f1f4ce617..94e908d434e4 100644
--- a/svtools/source/control/toolbarmenuimp.hxx
+++ b/svtools/source/control/toolbarmenuimp.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_SVTOOLS_SOURCE_CONTROL_TOOLBARMENUIMP_HXX
+#define INCLUDED_SVTOOLS_SOURCE_CONTROL_TOOLBARMENUIMP_HXX
+
#include <osl/mutex.hxx>
#include <vcl/image.hxx>
#include <vcl/menu.hxx>
@@ -311,4 +314,6 @@ struct ToolbarMenu_Impl
}
+#endif // INCLUDED_SVTOOLS_SOURCE_CONTROL_TOOLBARMENUIMP_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svtools/source/control/valueimp.hxx b/svtools/source/control/valueimp.hxx
index c6e2a644a69e..7651de8e1864 100644
--- a/svtools/source/control/valueimp.hxx
+++ b/svtools/source/control/valueimp.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_SVTOOLS_SOURCE_CONTROL_VALUEIMP_HXX
+#define INCLUDED_SVTOOLS_SOURCE_CONTROL_VALUEIMP_HXX
+
#include <osl/mutex.hxx>
#include <tools/color.hxx>
#include <vcl/image.hxx>
@@ -263,4 +266,6 @@ public:
virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
};
+#endif // INCLUDED_SVTOOLS_SOURCE_CONTROL_VALUEIMP_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/svtools/source/toolpanel/toolpaneldrawer.hxx b/svtools/source/toolpanel/toolpaneldrawer.hxx
index c237500caad2..536a88727106 100644
--- a/svtools/source/toolpanel/toolpaneldrawer.hxx
+++ b/svtools/source/toolpanel/toolpaneldrawer.hxx
@@ -17,6 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_SVTOOLS_SOURCE_TOOLPANEL_TOOLPANELDRAWER_HXX
+#define INCLUDED_SVTOOLS_SOURCE_TOOLPANEL_TOOLPANELDRAWER_HXX
#include <vcl/window.hxx>
#include <vcl/virdev.hxx>
@@ -104,4 +106,6 @@ namespace svt
} // namespace svt
+#endif // INCLUDED_SVTOOLS_SOURCE_TOOLPANEL_TOOLPANELDRAWER_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */