diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-03-17 01:11:29 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-03-25 13:42:28 +0100 |
commit | 4304226d79849b31fd0ded168cee45a91f240363 (patch) | |
tree | 01808c50e78f517573c0ed93d3ca26dd79c643d8 /include/sfx2/docfile.hxx | |
parent | bbe8bc3c8610d5d218afaa779e86d822a7a76345 (diff) |
tdf#42949 Fix IWYU warnings in include/sfx2/[a-D]*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I444cb71bc3d045072a4b1f9eed279ed7e425a0d4
Reviewed-on: https://gerrit.libreoffice.org/69481
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/sfx2/docfile.hxx')
-rw-r--r-- | include/sfx2/docfile.hxx | 32 |
1 files changed, 12 insertions, 20 deletions
diff --git a/include/sfx2/docfile.hxx b/include/sfx2/docfile.hxx index 64c18b05dcf8..a8fae8409bb9 100644 --- a/include/sfx2/docfile.hxx +++ b/include/sfx2/docfile.hxx @@ -21,41 +21,33 @@ #define INCLUDED_SFX2_DOCFILE_HXX #include <memory> -#include <com/sun/star/io/XSeekable.hpp> #include <sal/config.h> #include <sfx2/dllapi.h> #include <sfx2/signaturestate.hxx> #include <svl/lockfilecommon.hxx> #include <sal/types.h> -#include <com/sun/star/graphic/XGraphic.hpp> -#include <com/sun/star/util/RevisionTag.hpp> -#include <com/sun/star/util/DateTime.hpp> -#include <com/sun/star/io/XOutputStream.hpp> -#include <com/sun/star/io/XInputStream.hpp> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> -#include <com/sun/star/lang/XServiceInfo.hpp> -#include <com/sun/star/ucb/XContent.hpp> -#include <com/sun/star/ucb/XCommandEnvironment.hpp> -#include <com/sun/star/security/XCertificate.hpp> -#include <com/sun/star/task/XInteractionHandler.hpp> -#include <com/sun/star/embed/XStorage.hpp> -#include <com/sun/star/beans/PropertyValue.hpp> -#include <cppuhelper/weak.hxx> #include <rtl/ustring.hxx> -#include <svl/lstner.hxx> #include <svl/itemset.hxx> #include <tools/link.hxx> #include <tools/stream.hxx> -#include <ucbhelper/content.hxx> + +namespace com::sun::star::beans { struct PropertyValue; } +namespace com::sun::star::embed { class XStorage; } +namespace com::sun::star::graphic { class XGraphic; } +namespace com::sun::star::io { class XInputStream; } +namespace com::sun::star::security { class XCertificate; } +namespace com::sun::star::task { class XInteractionHandler; } +namespace com::sun::star::ucb { class XCommandEnvironment; } +namespace com::sun::star::ucb { class XContent; } +namespace com::sun::star::util { struct DateTime; } +namespace com::sun::star::util { struct RevisionTag; } +namespace ucbhelper { class Content; } class SvKeyValueIterator; -class SfxObjectFactory; class SfxFilter; class SfxMedium_Impl; class INetURLObject; -class SfxObjectShell; class SfxFrame; -class Timer; class DateTime; namespace weld |