diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-24 18:35:12 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-11-24 18:58:43 +0100 |
commit | 144a8586b8a3cc16a00807f5968886e73c44c0d9 (patch) | |
tree | 97141e24175a3ad8baf3f89fcc0694ee358f080c /oox | |
parent | 41956321ceefb5836feb2c119b66de7bb557740f (diff) |
this method actually can throw, related fdo#57451
Change-Id: I26b79829029e127eb8b9ab4fbea3e0f02035ee41
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/oox/core/xmlfilterbase.hxx | 2 | ||||
-rw-r--r-- | oox/source/core/xmlfilterbase.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/oox/inc/oox/core/xmlfilterbase.hxx b/oox/inc/oox/core/xmlfilterbase.hxx index dad67e33d0ef..bf066fdfddb3 100644 --- a/oox/inc/oox/core/xmlfilterbase.hxx +++ b/oox/inc/oox/core/xmlfilterbase.hxx @@ -226,7 +226,7 @@ public: sal_Int32 getNamespaceId( const ::rtl::OUString& rUrl ); - void importDocumentProperties() throw(); + void importDocumentProperties(); protected: virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > diff --git a/oox/source/core/xmlfilterbase.cxx b/oox/source/core/xmlfilterbase.cxx index 70b39364e099..64aec26887cc 100644 --- a/oox/source/core/xmlfilterbase.cxx +++ b/oox/source/core/xmlfilterbase.cxx @@ -206,7 +206,7 @@ XmlFilterBase::~XmlFilterBase() // ---------------------------------------------------------------------------- -void XmlFilterBase::importDocumentProperties() throw() +void XmlFilterBase::importDocumentProperties() { Reference< XMultiServiceFactory > xFactory( getServiceFactory(), UNO_QUERY ); MediaDescriptor aMediaDesc( getMediaDescriptor() ); |