diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2022-01-10 00:32:46 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2022-01-14 12:32:21 +0100 |
commit | bc3a0205e2100b845b504b63e591b7400833d632 (patch) | |
tree | 4b21ac34c33bcda26929678a89f013d69facd0cb /desktop/source/deployment | |
parent | ad27c35a11bd9a78f30bbe4da76cdde223cf8624 (diff) |
Recheck modules d* with IWYU
See tdf#42949 for motivation
Change-Id: I916f42c46efa1b6cfd7744a189b79659b2867431
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128196
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'desktop/source/deployment')
18 files changed, 13 insertions, 8 deletions
diff --git a/desktop/source/deployment/dp_log.cxx b/desktop/source/deployment/dp_log.cxx index 64c10183b58b..9cdf8d071a99 100644 --- a/desktop/source/deployment/dp_log.cxx +++ b/desktop/source/deployment/dp_log.cxx @@ -18,7 +18,6 @@ */ -#include <dp_misc.h> #include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase.hxx> #include <cppuhelper/supportsservice.hxx> diff --git a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx index b13697a75c30..26820c5ea97f 100644 --- a/desktop/source/deployment/gui/dp_gui_updatedialog.cxx +++ b/desktop/source/deployment/gui/dp_gui_updatedialog.cxx @@ -26,7 +26,6 @@ #include <optional> #include <com/sun/star/beans/NamedValue.hpp> -#include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/configuration/theDefaultProvider.hpp> #include <com/sun/star/container/XNameAccess.hpp> diff --git a/desktop/source/deployment/manager/dp_activepackages.hxx b/desktop/source/deployment/manager/dp_activepackages.hxx index 114a11fbff54..fae938019c27 100644 --- a/desktop/source/deployment/manager/dp_activepackages.hxx +++ b/desktop/source/deployment/manager/dp_activepackages.hxx @@ -22,6 +22,7 @@ #include <config_extensions.h> #include <sal/config.h> +#include <rtl/ustring.hxx> #include <utility> #include <vector> diff --git a/desktop/source/deployment/manager/dp_extensionmanager.cxx b/desktop/source/deployment/manager/dp_extensionmanager.cxx index f9a878e8f1cb..3466a818b870 100644 --- a/desktop/source/deployment/manager/dp_extensionmanager.cxx +++ b/desktop/source/deployment/manager/dp_extensionmanager.cxx @@ -44,6 +44,7 @@ #include <xmlscript/xml_helper.hxx> #include <osl/diagnose.h> #include <dp_interact.h> +#include <dp_misc.h> #include <dp_ucb.h> #include <dp_identifier.hxx> #include <dp_descriptioninfoset.hxx> diff --git a/desktop/source/deployment/manager/dp_extensionmanager.hxx b/desktop/source/deployment/manager/dp_extensionmanager.hxx index 348b0cc4e68f..0e08314c36f6 100644 --- a/desktop/source/deployment/manager/dp_extensionmanager.hxx +++ b/desktop/source/deployment/manager/dp_extensionmanager.hxx @@ -20,7 +20,6 @@ #pragma once #include <strings.hrc> -#include <dp_misc.h> #include <dp_shared.hxx> #include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase.hxx> @@ -28,6 +27,7 @@ #include <com/sun/star/deployment/XPackageManager.hpp> #include <com/sun/star/deployment/XPackageManagerFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <osl/mutex.hxx> #include <vector> #include <unordered_map> diff --git a/desktop/source/deployment/manager/dp_manager.cxx b/desktop/source/deployment/manager/dp_manager.cxx index 54ac26282750..2f0cecc470fa 100644 --- a/desktop/source/deployment/manager/dp_manager.cxx +++ b/desktop/source/deployment/manager/dp_manager.cxx @@ -20,6 +20,7 @@ #include <config_features.h> #include <dp_interact.h> +#include <dp_misc.h> #include <dp_registry.hxx> #include <dp_shared.hxx> #include <strings.hrc> diff --git a/desktop/source/deployment/manager/dp_manager.h b/desktop/source/deployment/manager/dp_manager.h index fbcc2d594861..56a48420e355 100644 --- a/desktop/source/deployment/manager/dp_manager.h +++ b/desktop/source/deployment/manager/dp_manager.h @@ -19,7 +19,6 @@ #pragma once -#include <dp_misc.h> #include "dp_activepackages.hxx" #include <cppuhelper/basemutex.hxx> #include <cppuhelper/compbase.hxx> diff --git a/desktop/source/deployment/manager/dp_managerfac.cxx b/desktop/source/deployment/manager/dp_managerfac.cxx index cd96699caec1..79e0ea3588db 100644 --- a/desktop/source/deployment/manager/dp_managerfac.cxx +++ b/desktop/source/deployment/manager/dp_managerfac.cxx @@ -19,6 +19,7 @@ #include "dp_manager.h" +#include <dp_misc.h> #include <cppuhelper/compbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <com/sun/star/deployment/XPackageManagerFactory.hpp> diff --git a/desktop/source/deployment/manager/dp_properties.cxx b/desktop/source/deployment/manager/dp_properties.cxx index 7d5e0edda975..b0d2245e8fde 100644 --- a/desktop/source/deployment/manager/dp_properties.cxx +++ b/desktop/source/deployment/manager/dp_properties.cxx @@ -24,7 +24,6 @@ #include <ucbhelper/content.hxx> #include <dp_ucb.h> -#include <rtl/ustrbuf.hxx> #include "dp_properties.hxx" namespace lang = com::sun::star::lang; diff --git a/desktop/source/deployment/misc/dp_ucb.cxx b/desktop/source/deployment/misc/dp_ucb.cxx index 3da815f15fa4..28f4192eeca6 100644 --- a/desktop/source/deployment/misc/dp_ucb.cxx +++ b/desktop/source/deployment/misc/dp_ucb.cxx @@ -19,8 +19,6 @@ #include <sal/config.h> -#include <string_view> - #include <dp_misc.h> #include <dp_ucb.h> #include <rtl/uri.hxx> diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx index f154134678f5..d29229aa5a05 100644 --- a/desktop/source/deployment/registry/component/dp_component.cxx +++ b/desktop/source/deployment/registry/component/dp_component.cxx @@ -19,6 +19,7 @@ #include <strings.hrc> +#include <dp_misc.h> #include <dp_shared.hxx> #include <dp_backend.h> #include <dp_platform.hxx> diff --git a/desktop/source/deployment/registry/configuration/dp_configuration.cxx b/desktop/source/deployment/registry/configuration/dp_configuration.cxx index a4f19bf6d875..e2fb409c2f6a 100644 --- a/desktop/source/deployment/registry/configuration/dp_configuration.cxx +++ b/desktop/source/deployment/registry/configuration/dp_configuration.cxx @@ -26,6 +26,7 @@ #if HAVE_FEATURE_EXTENSIONS #include <dp_persmap.h> #endif +#include <dp_misc.h> #include <dp_ucb.h> #include <rtl/string.hxx> #include <rtl/strbuf.hxx> diff --git a/desktop/source/deployment/registry/dp_backend.cxx b/desktop/source/deployment/registry/dp_backend.cxx index 58e689e9f2eb..ce37da6280fd 100644 --- a/desktop/source/deployment/registry/dp_backend.cxx +++ b/desktop/source/deployment/registry/dp_backend.cxx @@ -22,6 +22,7 @@ #include <cassert> #include <dp_backend.h> +#include <dp_misc.h> #include <dp_ucb.h> #include <rtl/ustring.hxx> #include <rtl/bootstrap.hxx> diff --git a/desktop/source/deployment/registry/help/dp_help.cxx b/desktop/source/deployment/registry/help/dp_help.cxx index 4c8d077e27fc..834f829ad35b 100644 --- a/desktop/source/deployment/registry/help/dp_help.cxx +++ b/desktop/source/deployment/registry/help/dp_help.cxx @@ -22,6 +22,7 @@ #include <strings.hrc> #include <dp_backend.h> +#include <dp_misc.h> #include "dp_helpbackenddb.hxx" #include <dp_ucb.h> #include <rtl/uri.hxx> diff --git a/desktop/source/deployment/registry/inc/dp_backend.h b/desktop/source/deployment/registry/inc/dp_backend.h index 4a9353bf415a..e6dd949f1b23 100644 --- a/desktop/source/deployment/registry/inc/dp_backend.h +++ b/desktop/source/deployment/registry/inc/dp_backend.h @@ -19,7 +19,6 @@ #pragma once -#include <dp_misc.h> #include <dp_shared.hxx> #include <dp_interact.h> #include <rtl/ref.hxx> @@ -29,6 +28,7 @@ #include <com/sun/star/lang/XEventListener.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/deployment/XPackageRegistry.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <unordered_map> #include <strings.hrc> diff --git a/desktop/source/deployment/registry/package/dp_package.cxx b/desktop/source/deployment/registry/package/dp_package.cxx index 09dc1331d4ef..321db824f40c 100644 --- a/desktop/source/deployment/registry/package/dp_package.cxx +++ b/desktop/source/deployment/registry/package/dp_package.cxx @@ -21,6 +21,7 @@ #include <strings.hrc> #include <dp_package.hxx> #include <dp_backend.h> +#include <dp_misc.h> #include <dp_ucb.h> #include <dp_interact.h> #include <dp_dependencies.hxx> diff --git a/desktop/source/deployment/registry/script/dp_script.cxx b/desktop/source/deployment/registry/script/dp_script.cxx index 3dc951a6f1d4..47e41a364e7b 100644 --- a/desktop/source/deployment/registry/script/dp_script.cxx +++ b/desktop/source/deployment/registry/script/dp_script.cxx @@ -21,6 +21,7 @@ #include <strings.hrc> #include "dp_lib_container.h" #include <dp_backend.h> +#include <dp_misc.h> #include <dp_ucb.h> #include <ucbhelper/content.hxx> #include <cppuhelper/implbase.hxx> diff --git a/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx b/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx index 758bdf264a18..34ff6d4ecd05 100644 --- a/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx +++ b/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx @@ -21,6 +21,7 @@ #include <strings.hrc> #include <dp_backend.h> +#include <dp_misc.h> #include <dp_ucb.h> #include "dp_parceldesc.hxx" #include <rtl/uri.hxx> |