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 /oox | |
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 'oox')
-rw-r--r-- | oox/source/crypto/DocumentEncryption.cxx | 1 | ||||
-rw-r--r-- | oox/source/docprop/docprophandler.cxx | 2 | ||||
-rw-r--r-- | oox/source/helper/textinputstream.cxx | 1 | ||||
-rw-r--r-- | oox/source/ole/olestorage.cxx | 2 |
4 files changed, 5 insertions, 1 deletions
diff --git a/oox/source/crypto/DocumentEncryption.cxx b/oox/source/crypto/DocumentEncryption.cxx index 493fcbf6ee85..fe894f37a0c8 100644 --- a/oox/source/crypto/DocumentEncryption.cxx +++ b/oox/source/crypto/DocumentEncryption.cxx @@ -23,7 +23,6 @@ namespace oox { namespace core { using namespace css::io; -using namespace css::lang; using namespace css::uno; DocumentEncryption::DocumentEncryption(Reference<XStream> const & xDocumentStream, diff --git a/oox/source/docprop/docprophandler.cxx b/oox/source/docprop/docprophandler.cxx index 24e45cef9276..ec75f877fabf 100644 --- a/oox/source/docprop/docprophandler.cxx +++ b/oox/source/docprop/docprophandler.cxx @@ -21,7 +21,9 @@ #include <com/sun/star/beans/PropertyAttribute.hpp> #include <com/sun/star/beans/PropertyExistException.hpp> +#include <com/sun/star/lang/IllegalArgumentException.hpp> #include <com/sun/star/lang/Locale.hpp> +#include <com/sun/star/xml/sax/SAXException.hpp> #include <osl/time.h> #include <osl/diagnose.h> diff --git a/oox/source/helper/textinputstream.cxx b/oox/source/helper/textinputstream.cxx index 6159edee7a8b..e592ce0b5283 100644 --- a/oox/source/helper/textinputstream.cxx +++ b/oox/source/helper/textinputstream.cxx @@ -19,6 +19,7 @@ #include "oox/helper/textinputstream.hxx" +#include <com/sun/star/io/NotConnectedException.hpp> #include <com/sun/star/io/XActiveDataSink.hpp> #include <com/sun/star/io/TextInputStream.hpp> #include <cppuhelper/implbase.hxx> diff --git a/oox/source/ole/olestorage.cxx b/oox/source/ole/olestorage.cxx index 7d282bfdf6f1..1527c4ef814a 100644 --- a/oox/source/ole/olestorage.cxx +++ b/oox/source/ole/olestorage.cxx @@ -22,6 +22,8 @@ #include <com/sun/star/beans/PropertyValue.hpp> #include <com/sun/star/container/XNameContainer.hpp> #include <com/sun/star/embed/XTransactedObject.hpp> +#include <com/sun/star/io/IOException.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/XOutputStream.hpp> |