diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-08-18 18:24:16 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-09-10 09:58:12 +0200 |
commit | cc7280efdbfefd96eb96b63dc8bd171d39704388 (patch) | |
tree | 76b0d516d033c5006ddb122f2d847fce20c9d93c /stoc | |
parent | 433fce6571d4b9121374047324a7d2d2722ac3e4 (diff) |
tdf#42949 Fix IWYU warnings in include/cppuhelper/*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: Ib420e9216b8313f5ed7634ec375e39ceb741fd45
Reviewed-on: https://gerrit.libreoffice.org/59297
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/implementationregistration/implreg.cxx | 1 | ||||
-rw-r--r-- | stoc/source/invocation_adapterfactory/iafactory.cxx | 1 | ||||
-rw-r--r-- | stoc/source/javavm/javavm.cxx | 1 | ||||
-rw-r--r-- | stoc/source/loader/dllcomponentloader.cxx | 1 | ||||
-rw-r--r-- | stoc/source/proxy_factory/proxyfac.cxx | 1 | ||||
-rw-r--r-- | stoc/source/security/access_controller.cxx | 1 | ||||
-rw-r--r-- | stoc/source/security/file_policy.cxx | 1 | ||||
-rw-r--r-- | stoc/source/servicemanager/servicemanager.cxx | 2 |
8 files changed, 9 insertions, 0 deletions
diff --git a/stoc/source/implementationregistration/implreg.cxx b/stoc/source/implementationregistration/implreg.cxx index b929972ba441..dd8997e5673b 100644 --- a/stoc/source/implementationregistration/implreg.cxx +++ b/stoc/source/implementationregistration/implreg.cxx @@ -46,6 +46,7 @@ #include <com/sun/star/reflection/XServiceTypeDescription.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/uno/RuntimeException.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include "mergekeys.hxx" diff --git a/stoc/source/invocation_adapterfactory/iafactory.cxx b/stoc/source/invocation_adapterfactory/iafactory.cxx index fea4816ac99e..c353729f3e6c 100644 --- a/stoc/source/invocation_adapterfactory/iafactory.cxx +++ b/stoc/source/invocation_adapterfactory/iafactory.cxx @@ -45,6 +45,7 @@ #include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/reflection/InvocationTargetException.hpp> #include <com/sun/star/uno/RuntimeException.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <unordered_map> #include <unordered_set> diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx index 86d546462f7a..968e776be2a0 100644 --- a/stoc/source/javavm/javavm.cxx +++ b/stoc/source/javavm/javavm.cxx @@ -37,6 +37,7 @@ #include <com/sun/star/lang/XEventListener.hpp> #include <com/sun/star/lang/XMultiComponentFactory.hpp> #include <com/sun/star/lang/XSingleComponentFactory.hpp> +#include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/registry/XSimpleRegistry.hpp> diff --git a/stoc/source/loader/dllcomponentloader.cxx b/stoc/source/loader/dllcomponentloader.cxx index db48d2d2ad28..a5c96a957452 100644 --- a/stoc/source/loader/dllcomponentloader.cxx +++ b/stoc/source/loader/dllcomponentloader.cxx @@ -40,6 +40,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> using namespace com::sun::star; using namespace css::uno; diff --git a/stoc/source/proxy_factory/proxyfac.cxx b/stoc/source/proxy_factory/proxyfac.cxx index 99915cde3e3a..122497928295 100644 --- a/stoc/source/proxy_factory/proxyfac.cxx +++ b/stoc/source/proxy_factory/proxyfac.cxx @@ -34,6 +34,7 @@ #include <cppuhelper/implementationentry.hxx> #include <cppuhelper/factory.hxx> #include <cppuhelper/supportsservice.hxx> +#include <cppuhelper/weakagg.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> #include <com/sun/star/reflection/XProxyFactory.hpp> diff --git a/stoc/source/security/access_controller.cxx b/stoc/source/security/access_controller.cxx index 1f046695e953..c169444d731c 100644 --- a/stoc/source/security/access_controller.cxx +++ b/stoc/source/security/access_controller.cxx @@ -38,6 +38,7 @@ #include <com/sun/star/uno/XCurrentContext.hpp> #include <com/sun/star/uno/DeploymentException.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/lang/DisposedException.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> diff --git a/stoc/source/security/file_policy.cxx b/stoc/source/security/file_policy.cxx index 305d89585ea5..e720cafbf85f 100644 --- a/stoc/source/security/file_policy.cxx +++ b/stoc/source/security/file_policy.cxx @@ -36,6 +36,7 @@ #include <com/sun/star/security/RuntimePermission.hpp> #include <com/sun/star/io/FilePermission.hpp> #include <com/sun/star/connection/SocketPermission.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <unordered_map> diff --git a/stoc/source/servicemanager/servicemanager.cxx b/stoc/source/servicemanager/servicemanager.cxx index b295aa6f112b..a20fa8de7ed5 100644 --- a/stoc/source/servicemanager/servicemanager.cxx +++ b/stoc/source/servicemanager/servicemanager.cxx @@ -43,6 +43,7 @@ #include <com/sun/star/lang/XMultiComponentFactory.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> +#include <com/sun/star/lang/XSingleComponentFactory.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XEventListener.hpp> #include <com/sun/star/lang/DisposedException.hpp> @@ -55,6 +56,7 @@ #include <com/sun/star/container/XEnumeration.hpp> #include <com/sun/star/container/XContentEnumerationAccess.hpp> #include <com/sun/star/container/XHierarchicalNameAccess.hpp> +#include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/uno/XUnloadingPreference.hpp> #include <unordered_map> |