diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-06 17:08:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-06 17:21:16 +0100 |
commit | 6dce9c6757823b9e89863716ae70ff4e8ddd4e60 (patch) | |
tree | 0cb3d7c68223f595e59800ba4cec4456a3b17642 /package | |
parent | a73fb11cb235dd600d29f214f8a079792f6b2445 (diff) |
Add missing #includes
...and remove some unncessary using directives/declarations, in preparation of
removing now-unnecessary #includes from cppumaker-generated files, post
e57ca02849c3d87142ff5ff9099a212e72b8139c "Remove dynamic exception
specifications".
Change-Id: Iaf1f268871e2ee1d1c76cf90f03557527ebc9067
Diffstat (limited to 'package')
-rw-r--r-- | package/source/manifest/ManifestReader.cxx | 1 | ||||
-rw-r--r-- | package/source/xstor/ocompinstream.cxx | 1 | ||||
-rw-r--r-- | package/source/xstor/ohierarchyholder.cxx | 4 | ||||
-rw-r--r-- | package/source/xstor/owriteablestream.cxx | 5 | ||||
-rw-r--r-- | package/source/xstor/switchpersistencestream.cxx | 3 | ||||
-rw-r--r-- | package/source/xstor/xfactory.cxx | 1 | ||||
-rw-r--r-- | package/source/xstor/xstorage.cxx | 4 | ||||
-rw-r--r-- | package/source/zipapi/blowfishcontext.cxx | 3 | ||||
-rw-r--r-- | package/source/zipapi/sha1context.cxx | 3 | ||||
-rw-r--r-- | package/source/zippackage/ZipPackageBuffer.cxx | 3 | ||||
-rw-r--r-- | package/source/zippackage/ZipPackageEntry.cxx | 1 | ||||
-rw-r--r-- | package/source/zippackage/ZipPackageStream.cxx | 1 | ||||
-rw-r--r-- | package/source/zippackage/wrapstreamforshare.cxx | 3 |
13 files changed, 32 insertions, 1 deletions
diff --git a/package/source/manifest/ManifestReader.cxx b/package/source/manifest/ManifestReader.cxx index f1661d12a6dc..61140f6afc65 100644 --- a/package/source/manifest/ManifestReader.cxx +++ b/package/source/manifest/ManifestReader.cxx @@ -23,6 +23,7 @@ #include <comphelper/sequence.hxx> #include <cppuhelper/factory.hxx> #include <cppuhelper/supportsservice.hxx> +#include <com/sun/star/io/IOException.hpp> #include <com/sun/star/xml/sax/XDocumentHandler.hpp> #include <com/sun/star/xml/sax/SAXParseException.hpp> #include <com/sun/star/xml/sax/Parser.hpp> diff --git a/package/source/xstor/ocompinstream.cxx b/package/source/xstor/ocompinstream.cxx index 63bc7dc6eca4..222af14fe848 100644 --- a/package/source/xstor/ocompinstream.cxx +++ b/package/source/xstor/ocompinstream.cxx @@ -19,6 +19,7 @@ #include "ocompinstream.hxx" #include <com/sun/star/embed/StorageFormats.hpp> +#include <com/sun/star/io/IOException.hpp> #include <com/sun/star/lang/DisposedException.hpp> #include <cppuhelper/queryinterface.hxx> #include <osl/diagnose.h> diff --git a/package/source/xstor/ohierarchyholder.cxx b/package/source/xstor/ohierarchyholder.cxx index d3730a90c670..f5bcc68ea250 100644 --- a/package/source/xstor/ohierarchyholder.cxx +++ b/package/source/xstor/ohierarchyholder.cxx @@ -17,11 +17,15 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <com/sun/star/io/IOException.hpp> #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/embed/ElementModes.hpp> #include <com/sun/star/embed/XHierarchicalStorageAccess2.hpp> #include <com/sun/star/embed/XTransactedObject.hpp> #include <com/sun/star/embed/XTransactionBroadcaster.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include "ohierarchyholder.hxx" diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx index c4e5822c493e..455d51c04049 100644 --- a/package/source/xstor/owriteablestream.cxx +++ b/package/source/xstor/owriteablestream.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <com/sun/star/packages/WrongPasswordException.hpp> #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/ucb/SimpleFileAccess.hpp> #include <com/sun/star/ucb/XCommandEnvironment.hpp> @@ -24,11 +27,13 @@ #include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/logging/DocumentIOLogRing.hpp> +#include <com/sun/star/io/NotConnectedException.hpp> #include <com/sun/star/io/TempFile.hpp> #include <com/sun/star/io/XInputStream.hpp> #include <com/sun/star/io/IOException.hpp> #include <com/sun/star/embed/ElementModes.hpp> #include <com/sun/star/embed/StorageFormats.hpp> +#include <com/sun/star/embed/StorageWrappedTargetException.hpp> #include <com/sun/star/lang/WrappedTargetRuntimeException.hpp> #include <cppuhelper/typeprovider.hxx> #include <cppuhelper/queryinterface.hxx> diff --git a/package/source/xstor/switchpersistencestream.cxx b/package/source/xstor/switchpersistencestream.cxx index cd325742016c..c7c2ac87b435 100644 --- a/package/source/xstor/switchpersistencestream.cxx +++ b/package/source/xstor/switchpersistencestream.cxx @@ -18,7 +18,8 @@ */ #include <osl/diagnose.h> - +#include <com/sun/star/io/IOException.hpp> +#include <com/sun/star/io/NotConnectedException.hpp> #include <com/sun/star/io/TempFile.hpp> #include <comphelper/processfactory.hxx> #include <comphelper/storagehelper.hxx> diff --git a/package/source/xstor/xfactory.cxx b/package/source/xstor/xfactory.cxx index a7b5c462167d..d6c2730e7c5e 100644 --- a/package/source/xstor/xfactory.cxx +++ b/package/source/xstor/xfactory.cxx @@ -24,6 +24,7 @@ #include <com/sun/star/embed/ElementModes.hpp> #include <com/sun/star/embed/StorageFormats.hpp> #include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/io/IOException.hpp> #include <com/sun/star/io/TempFile.hpp> #include <com/sun/star/io/XSeekable.hpp> diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx index 98b6ac22c229..da757ea97747 100644 --- a/package/source/xstor/xstorage.cxx +++ b/package/source/xstor/xstorage.cxx @@ -23,8 +23,12 @@ #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/embed/ElementModes.hpp> +#include <com/sun/star/embed/InvalidStorageException.hpp> #include <com/sun/star/embed/UseBackupException.hpp> #include <com/sun/star/embed/StorageFormats.hpp> +#include <com/sun/star/embed/StorageWrappedTargetException.hpp> +#include <com/sun/star/packages/NoRawFormatException.hpp> +#include <com/sun/star/packages/WrongPasswordException.hpp> #include <com/sun/star/ucb/XProgressHandler.hpp> #include <com/sun/star/io/TempFile.hpp> #include <com/sun/star/logging/DocumentIOLogRing.hpp> diff --git a/package/source/zipapi/blowfishcontext.cxx b/package/source/zipapi/blowfishcontext.cxx index f572692c0366..37e614581e36 100644 --- a/package/source/zipapi/blowfishcontext.cxx +++ b/package/source/zipapi/blowfishcontext.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <com/sun/star/lang/DisposedException.hpp> #include <rtl/cipher.h> #include <rtl/ref.hxx> diff --git a/package/source/zipapi/sha1context.cxx b/package/source/zipapi/sha1context.cxx index c7bc6312c669..f24064616edb 100644 --- a/package/source/zipapi/sha1context.cxx +++ b/package/source/zipapi/sha1context.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <com/sun/star/lang/DisposedException.hpp> #include <rtl/digest.h> #include <rtl/ref.hxx> diff --git a/package/source/zippackage/ZipPackageBuffer.cxx b/package/source/zippackage/ZipPackageBuffer.cxx index cb5f80c1c052..8df0f3a96c9b 100644 --- a/package/source/zippackage/ZipPackageBuffer.cxx +++ b/package/source/zippackage/ZipPackageBuffer.cxx @@ -21,6 +21,9 @@ #include <PackageConstants.hxx> #include <string.h> +#include <com/sun/star/io/BufferSizeExceededException.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> + using namespace ::com::sun::star; using namespace com::sun::star::uno; using namespace com::sun::star::io; diff --git a/package/source/zippackage/ZipPackageEntry.cxx b/package/source/zippackage/ZipPackageEntry.cxx index 727add5b07a3..0673e887d111 100644 --- a/package/source/zippackage/ZipPackageEntry.cxx +++ b/package/source/zippackage/ZipPackageEntry.cxx @@ -18,6 +18,7 @@ */ #include <ZipPackageEntry.hxx> +#include <com/sun/star/lang/NoSupportException.hpp> #include <com/sun/star/packages/zip/ZipConstants.hpp> #include <osl/diagnose.h> diff --git a/package/source/zippackage/ZipPackageStream.cxx b/package/source/zippackage/ZipPackageStream.cxx index 971263859fd5..6f7ab60f81df 100644 --- a/package/source/zippackage/ZipPackageStream.cxx +++ b/package/source/zippackage/ZipPackageStream.cxx @@ -20,6 +20,7 @@ #include <ZipPackageStream.hxx> #include <com/sun/star/beans/PropertyValue.hpp> +#include <com/sun/star/packages/NoRawFormatException.hpp> #include <com/sun/star/packages/zip/ZipConstants.hpp> #include <com/sun/star/embed/StorageFormats.hpp> #include <com/sun/star/packages/zip/ZipIOException.hpp> diff --git a/package/source/zippackage/wrapstreamforshare.cxx b/package/source/zippackage/wrapstreamforshare.cxx index 2065454c78c7..393ad27c6cc0 100644 --- a/package/source/zippackage/wrapstreamforshare.cxx +++ b/package/source/zippackage/wrapstreamforshare.cxx @@ -17,6 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> + +#include <com/sun/star/io/IOException.hpp> #include <osl/diagnose.h> #include "wrapstreamforshare.hxx" |