diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-09-30 16:52:18 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-10-01 00:11:49 +0000 |
commit | cf4ff92144726a91508fcaf4be21170eac5cb99a (patch) | |
tree | 6352fd0c436c90941a61d60626139e0f946d608d /include | |
parent | 8e7997fe0c4f5a20918fbaabc1a00fd0db070b95 (diff) |
add missing include guards
Change-Id: If8fa3a98fec128a091b1dd1c2764ad80aac0bb90
Reviewed-on: https://gerrit.libreoffice.org/29416
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/uitest/uiobject.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vcl/uitest/uiobject.hxx b/include/vcl/uitest/uiobject.hxx index d9d683179986..81ce29742193 100644 --- a/include/vcl/uitest/uiobject.hxx +++ b/include/vcl/uitest/uiobject.hxx @@ -7,6 +7,9 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_VCL_UITEST_UIOBJECT_HXX +#define INCLUDED_VCL_UITEST_UIOBJECT_HXX + #include <rtl/ustring.hxx> #include <map> #include <memory> @@ -355,4 +358,6 @@ protected: virtual OUString get_name() const override; }; +#endif + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |