diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-10-15 21:44:22 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-10-17 12:30:05 +0200 |
commit | f3b34508682c829abd697c66917b8e46e9e8266c (patch) | |
tree | e5e4be8b4b86a39ef9e7738c2084d5df90d90527 /tools | |
parent | c0baf66fcf5175af12df227a090ae5d2b4bdb680 (diff) |
tdf#42949 Fix IWYU warnings in include/tools/*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I9dc920e9388f9e2aa4dcae1f0b3f7562d08f7f70
Reviewed-on: https://gerrit.libreoffice.org/61809
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/datetime/tdate.cxx | 1 | ||||
-rw-r--r-- | tools/source/datetime/ttime.cxx | 1 | ||||
-rw-r--r-- | tools/source/generic/svborder.cxx | 1 | ||||
-rw-r--r-- | tools/source/xml/XmlWalker.cxx | 1 | ||||
-rw-r--r-- | tools/source/xml/XmlWriter.cxx | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/tools/source/datetime/tdate.cxx b/tools/source/datetime/tdate.cxx index fde579b8b56a..51c6b53bd0a3 100644 --- a/tools/source/datetime/tdate.cxx +++ b/tools/source/datetime/tdate.cxx @@ -18,6 +18,7 @@ */ #include <tools/date.hxx> #include <sal/log.hxx> +#include <com/sun/star/util/DateTime.hpp> #include <systemdatetime.hxx> diff --git a/tools/source/datetime/ttime.cxx b/tools/source/datetime/ttime.cxx index 5a677b9b0dbf..a843949ee3f0 100644 --- a/tools/source/datetime/ttime.cxx +++ b/tools/source/datetime/ttime.cxx @@ -44,6 +44,7 @@ #include <rtl/math.hxx> #include <tools/time.hxx> #include <osl/diagnose.h> +#include <com/sun/star/util/DateTime.hpp> #include <systemdatetime.hxx> diff --git a/tools/source/generic/svborder.cxx b/tools/source/generic/svborder.cxx index f9145dc21233..78238b480508 100644 --- a/tools/source/generic/svborder.cxx +++ b/tools/source/generic/svborder.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include <tools/svborder.hxx> +#include <tools/gen.hxx> tools::Rectangle & operator += ( tools::Rectangle & rRect, const SvBorder & rBorder ) { diff --git a/tools/source/xml/XmlWalker.cxx b/tools/source/xml/XmlWalker.cxx index 3deae82288b9..7e6d282918d4 100644 --- a/tools/source/xml/XmlWalker.cxx +++ b/tools/source/xml/XmlWalker.cxx @@ -7,6 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#include <tools/stream.hxx> #include <tools/XmlWalker.hxx> #include <o3tl/make_unique.hxx> diff --git a/tools/source/xml/XmlWriter.cxx b/tools/source/xml/XmlWriter.cxx index 58c4a26f2cb5..f7b288d835f9 100644 --- a/tools/source/xml/XmlWriter.cxx +++ b/tools/source/xml/XmlWriter.cxx @@ -7,6 +7,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#include <tools/stream.hxx> #include <tools/XmlWriter.hxx> #include <o3tl/make_unique.hxx> |