diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-05-08 16:33:26 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-05-09 11:10:31 +0200 |
commit | b4946d58eb07aac674574da466829ab19c126c69 (patch) | |
tree | 67b3fbf94810cad895bfe6ab9635d2d75f239723 /include/vcl | |
parent | 2f60d8d3b67508c9fef59971ae725a12463a420d (diff) |
add missing include guards
Change-Id: I337c0f567112f95e2a1d762e511d5b632dd2892f
Reviewed-on: https://gerrit.libreoffice.org/71997
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/uitest/eventdescription.hxx | 5 | ||||
-rw-r--r-- | include/vcl/uitest/factory.hxx | 5 | ||||
-rw-r--r-- | include/vcl/uitest/logger.hxx | 5 | ||||
-rw-r--r-- | include/vcl/uitest/uitest.hxx | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/include/vcl/uitest/eventdescription.hxx b/include/vcl/uitest/eventdescription.hxx index ed2b54f3439b..47bf9e117ef9 100644 --- a/include/vcl/uitest/eventdescription.hxx +++ b/include/vcl/uitest/eventdescription.hxx @@ -7,6 +7,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_VCL_UITEST_EVENTDESCRIPTION_HXX +#define INCLUDED_VCL_UITEST_EVENTDESCRIPTION_HXX + #include <rtl/ustring.hxx> #include <map> @@ -16,4 +19,6 @@ struct EventDescription std::map<OUString, OUString> aParameters; }; +#endif + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/uitest/factory.hxx b/include/vcl/uitest/factory.hxx index da645f309b79..3319c5e18583 100644 --- a/include/vcl/uitest/factory.hxx +++ b/include/vcl/uitest/factory.hxx @@ -7,6 +7,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_VCL_UITEST_FACTORY_HXX +#define INCLUDED_VCL_UITEST_FACTORY_HXX + #include <memory> #include <functional> @@ -20,4 +23,6 @@ class UIObject; typedef std::function<std::unique_ptr<UIObject>(vcl::Window*)> FactoryFunction; +#endif + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/uitest/logger.hxx b/include/vcl/uitest/logger.hxx index 89f7c72f693b..f707049040fe 100644 --- a/include/vcl/uitest/logger.hxx +++ b/include/vcl/uitest/logger.hxx @@ -7,6 +7,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_VCL_UITEST_LOGGER_HXX +#define INCLUDED_VCL_UITEST_LOGGER_HXX + #include <vcl/dllapi.h> #include <tools/stream.hxx> @@ -47,4 +50,6 @@ public: }; +#endif + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vcl/uitest/uitest.hxx b/include/vcl/uitest/uitest.hxx index 00465b0ee1e8..14356b5b7487 100644 --- a/include/vcl/uitest/uitest.hxx +++ b/include/vcl/uitest/uitest.hxx @@ -7,6 +7,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_VCL_UITEST_UITEST_HXX +#define INCLUDED_VCL_UITEST_UITEST_HXX + #include <rtl/ustring.hxx> #include <vcl/dllapi.h> @@ -36,4 +39,6 @@ public: static std::unique_ptr<UIObject> getFloatWindow(); }; +#endif + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |