diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-09-20 20:26:40 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-09-24 23:23:20 +0200 |
commit | 8df9935dcbdb1b64385642fbd37d43ab5b3d092c (patch) | |
tree | 80935c884fbcf19e9b170f7565edf9b229f0abb2 /comphelper | |
parent | 8a83a40dc23b1e7c64a34c33a0ca57afc5183f40 (diff) |
tdf#42949 Fix IWYU warnings in include/comphelper/[a-l]*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I22ba2c8aec235e34cd7835b8a0a716bf3057db7a
Reviewed-on: https://gerrit.libreoffice.org/60837
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/container/embeddedobjectcontainer.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/misc/accessibleeventnotifier.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/misc/backupfilehelper.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/misc/configurationhelper.cxx | 3 | ||||
-rw-r--r-- | comphelper/source/misc/docpasswordhelper.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/misc/documentinfo.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/misc/listenernotification.cxx | 2 | ||||
-rw-r--r-- | comphelper/source/misc/lok.cxx | 1 | ||||
-rw-r--r-- | comphelper/source/streaming/basicio.cxx | 2 |
9 files changed, 12 insertions, 1 deletions
diff --git a/comphelper/source/container/embeddedobjectcontainer.cxx b/comphelper/source/container/embeddedobjectcontainer.cxx index 1395b63f5258..456c1f605bdc 100644 --- a/comphelper/source/container/embeddedobjectcontainer.cxx +++ b/comphelper/source/container/embeddedobjectcontainer.cxx @@ -22,6 +22,7 @@ #include <com/sun/star/embed/EmbeddedObjectCreator.hpp> #include <com/sun/star/embed/WrongStateException.hpp> #include <com/sun/star/embed/XLinkCreator.hpp> +#include <com/sun/star/embed/XEmbeddedObject.hpp> #include <com/sun/star/embed/XEmbedPersist.hpp> #include <com/sun/star/embed/XLinkageSupport.hpp> #include <com/sun/star/embed/XTransactedObject.hpp> diff --git a/comphelper/source/misc/accessibleeventnotifier.cxx b/comphelper/source/misc/accessibleeventnotifier.cxx index e3f5a3e9d443..f14176a03528 100644 --- a/comphelper/source/misc/accessibleeventnotifier.cxx +++ b/comphelper/source/misc/accessibleeventnotifier.cxx @@ -18,6 +18,7 @@ */ #include <comphelper/accessibleeventnotifier.hxx> +#include <com/sun/star/accessibility/XAccessibleEventListener.hpp> #include <rtl/instance.hxx> #include <comphelper/interfacecontainer2.hxx> diff --git a/comphelper/source/misc/backupfilehelper.cxx b/comphelper/source/misc/backupfilehelper.cxx index 7e5a76983e43..ee3f336f7d15 100644 --- a/comphelper/source/misc/backupfilehelper.cxx +++ b/comphelper/source/misc/backupfilehelper.cxx @@ -11,6 +11,7 @@ #include <rtl/ustring.hxx> #include <rtl/bootstrap.hxx> #include <sal/log.hxx> +#include <osl/file.hxx> #include <comphelper/backupfilehelper.hxx> #include <rtl/crc.h> #include <algorithm> diff --git a/comphelper/source/misc/configurationhelper.cxx b/comphelper/source/misc/configurationhelper.cxx index bf97ddff1783..f3853baeff81 100644 --- a/comphelper/source/misc/configurationhelper.cxx +++ b/comphelper/source/misc/configurationhelper.cxx @@ -20,10 +20,13 @@ #include <comphelper/configurationhelper.hxx> #include <comphelper/sequence.hxx> #include <com/sun/star/beans/XPropertySet.hpp> +#include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/configuration/theDefaultProvider.hpp> #include <com/sun/star/container/XNameAccess.hpp> #include <com/sun/star/container/XNameContainer.hpp> +#include <com/sun/star/container/XHierarchicalNameAccess.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> +#include <com/sun/star/util/XChangesBatch.hpp> namespace comphelper{ diff --git a/comphelper/source/misc/docpasswordhelper.cxx b/comphelper/source/misc/docpasswordhelper.cxx index 39dfb266197c..1458d0c0a4f6 100644 --- a/comphelper/source/misc/docpasswordhelper.cxx +++ b/comphelper/source/misc/docpasswordhelper.cxx @@ -26,6 +26,7 @@ #include <comphelper/hash.hxx> #include <comphelper/base64.hxx> #include <comphelper/sequence.hxx> +#include <com/sun/star/beans/NamedValue.hpp> #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> diff --git a/comphelper/source/misc/documentinfo.cxx b/comphelper/source/misc/documentinfo.cxx index 38be204a5f00..5c460e07f043 100644 --- a/comphelper/source/misc/documentinfo.cxx +++ b/comphelper/source/misc/documentinfo.cxx @@ -23,6 +23,7 @@ #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> #include <com/sun/star/document/XDocumentProperties.hpp> +#include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XStorable.hpp> #include <com/sun/star/frame/XTitle.hpp> diff --git a/comphelper/source/misc/listenernotification.cxx b/comphelper/source/misc/listenernotification.cxx index 5c0c56de2458..4bb4e7f619a0 100644 --- a/comphelper/source/misc/listenernotification.cxx +++ b/comphelper/source/misc/listenernotification.cxx @@ -19,7 +19,9 @@ #include <comphelper/listenernotification.hxx> +#include <com/sun/star/lang/XEventListener.hpp> #include <com/sun/star/lang/DisposedException.hpp> +#include <osl/diagnose.h> namespace comphelper diff --git a/comphelper/source/misc/lok.cxx b/comphelper/source/misc/lok.cxx index 0b983dba6a6b..0641e01660ab 100644 --- a/comphelper/source/misc/lok.cxx +++ b/comphelper/source/misc/lok.cxx @@ -8,6 +8,7 @@ */ #include <comphelper/lok.hxx> +#include <i18nlangtag/languagetag.hxx> #include <iostream> #include <sstream> diff --git a/comphelper/source/streaming/basicio.cxx b/comphelper/source/streaming/basicio.cxx index b43b6b1c7da0..d86427b7de81 100644 --- a/comphelper/source/streaming/basicio.cxx +++ b/comphelper/source/streaming/basicio.cxx @@ -18,7 +18,7 @@ */ #include <comphelper/basicio.hxx> - +#include <com/sun/star/awt/FontDescriptor.hpp> namespace comphelper { |