diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-09-27 23:08:16 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-09-30 10:03:30 +0200 |
commit | f0e0fb71fc6eefc65afdf1650100ffd4c64c18d0 (patch) | |
tree | ac45e47992992c5ac0de2d84bc7b2ebeb2bba125 /xmloff/source/forms/handler | |
parent | 8aa8893be8f3c7e4acfdacb401f8fe3d297647b5 (diff) |
tdf#42949 Fix IWYU warnings in xmloff/source/[c-m]*/*cxx
Also checked xmloff/qa
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I843917d255f841066ace8d944aa1d00f1b718108
Reviewed-on: https://gerrit.libreoffice.org/79773
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'xmloff/source/forms/handler')
-rw-r--r-- | xmloff/source/forms/handler/form_handler_factory.cxx | 1 | ||||
-rw-r--r-- | xmloff/source/forms/handler/vcl_date_handler.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/forms/handler/vcl_time_handler.cxx | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/xmloff/source/forms/handler/form_handler_factory.cxx b/xmloff/source/forms/handler/form_handler_factory.cxx index 9699193af488..2a943aa82355 100644 --- a/xmloff/source/forms/handler/form_handler_factory.cxx +++ b/xmloff/source/forms/handler/form_handler_factory.cxx @@ -21,7 +21,6 @@ #include "vcl_date_handler.hxx" #include "vcl_time_handler.hxx" #include <osl/diagnose.h> -#include <osl/mutex.hxx> namespace xmloff { diff --git a/xmloff/source/forms/handler/vcl_date_handler.cxx b/xmloff/source/forms/handler/vcl_date_handler.cxx index 8821eec23361..1961f332e536 100644 --- a/xmloff/source/forms/handler/vcl_date_handler.cxx +++ b/xmloff/source/forms/handler/vcl_date_handler.cxx @@ -26,7 +26,7 @@ #include <sax/tools/converter.hxx> -#include <tools/diagnose_ex.h> +#include <osl/diagnose.h> #include <tools/date.hxx> namespace xmloff diff --git a/xmloff/source/forms/handler/vcl_time_handler.cxx b/xmloff/source/forms/handler/vcl_time_handler.cxx index c37379b37b64..038559a0a80c 100644 --- a/xmloff/source/forms/handler/vcl_time_handler.cxx +++ b/xmloff/source/forms/handler/vcl_time_handler.cxx @@ -26,7 +26,7 @@ #include <sax/tools/converter.hxx> -#include <tools/diagnose_ex.h> +#include <osl/diagnose.h> #include <tools/time.hxx> namespace xmloff |