diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-12-18 23:41:35 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2018-12-20 12:36:41 +0100 |
commit | febe0fd100ff0bff33c965b3bcb497e7f2bc4ef9 (patch) | |
tree | 02c2b4132fc90db51bb882432e6ea2fcd7714323 /sw/source | |
parent | a60265f07bdd62d810cae3c7e64b1ad4fb02bbaa (diff) |
tdf#42949 Fix IWYU warnings in include/vcl/[t-u]*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ib32ea54a3fa690a0722fa75ddb4121ec78c0b64f
Reviewed-on: https://gerrit.libreoffice.org/65386
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/inc/DocumentStatisticsManager.hxx | 1 | ||||
-rw-r--r-- | sw/source/uibase/app/apphdl.cxx | 1 | ||||
-rw-r--r-- | sw/source/uibase/app/docsh.cxx | 1 | ||||
-rw-r--r-- | sw/source/uibase/table/chartins.cxx | 1 | ||||
-rw-r--r-- | sw/source/uibase/uno/unomodule.cxx | 2 |
5 files changed, 6 insertions, 0 deletions
diff --git a/sw/source/core/inc/DocumentStatisticsManager.hxx b/sw/source/core/inc/DocumentStatisticsManager.hxx index 6767d4b10cc5..ab82a767ae41 100644 --- a/sw/source/core/inc/DocumentStatisticsManager.hxx +++ b/sw/source/core/inc/DocumentStatisticsManager.hxx @@ -21,6 +21,7 @@ #include <IDocumentStatistics.hxx> #include <SwDocIdle.hxx> +#include <memory> class SwDoc; struct SwDocStat; diff --git a/sw/source/uibase/app/apphdl.cxx b/sw/source/uibase/app/apphdl.cxx index 3c7616a3e4fa..9269f46dc5a0 100644 --- a/sw/source/uibase/app/apphdl.cxx +++ b/sw/source/uibase/app/apphdl.cxx @@ -69,6 +69,7 @@ #include <org/freedesktop/PackageKit/SyncDbusSessionHelper.hpp> #include <swabstdlg.hxx> #include <comphelper/dispatchcommand.hxx> +#include <comphelper/processfactory.hxx> #include <salhelper/simplereferenceobject.hxx> #include <rtl/ref.hxx> diff --git a/sw/source/uibase/app/docsh.cxx b/sw/source/uibase/app/docsh.cxx index efafcfeef501..0d02885d3d4f 100644 --- a/sw/source/uibase/app/docsh.cxx +++ b/sw/source/uibase/app/docsh.cxx @@ -132,6 +132,7 @@ #include <sal/log.hxx> #include <LibreOfficeKit/LibreOfficeKitEnums.h> #include <o3tl/make_unique.hxx> +#include <comphelper/processfactory.hxx> using namespace ::com::sun::star; using namespace ::com::sun::star::uno; diff --git a/sw/source/uibase/table/chartins.cxx b/sw/source/uibase/table/chartins.cxx index 1c071806a0fd..e05cf11fc238 100644 --- a/sw/source/uibase/table/chartins.cxx +++ b/sw/source/uibase/table/chartins.cxx @@ -49,6 +49,7 @@ #include <comphelper/propertysequence.hxx> #include <com/sun/star/chart2/data/XDataProvider.hpp> #include <com/sun/star/lang/XInitialization.hpp> +#include <com/sun/star/lang/XMultiComponentFactory.hpp> #include <com/sun/star/ui/dialogs/XExecutableDialog.hpp> #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> diff --git a/sw/source/uibase/uno/unomodule.cxx b/sw/source/uibase/uno/unomodule.cxx index a3cccd5c7d8c..c04ad42206ca 100644 --- a/sw/source/uibase/uno/unomodule.cxx +++ b/sw/source/uibase/uno/unomodule.cxx @@ -19,12 +19,14 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/frame/DispatchResultState.hpp> +#include <com/sun/star/frame/Desktop.hpp> #include <swmodule.hxx> #include <swdll.hxx> #include <unofreg.hxx> #include "unomodule.hxx" #include <cppuhelper/supportsservice.hxx> +#include <comphelper/processfactory.hxx> #include <sfx2/objface.hxx> #include <sfx2/bindings.hxx> #include <sfx2/request.hxx> |