summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-11-24 18:35:12 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-11-24 23:56:29 +0000
commit629eae76961a8b455d0b966db5f3888c30d0280e (patch)
treea9e779d6e6d644864fc9b732c5047abc8761dd04
parent4ce8d87c349ad821dec2edb8e4eca5b268b762a9 (diff)
this method actually can throw, related fdo#57451
Change-Id: I26b79829029e127eb8b9ab4fbea3e0f02035ee41 Signed-off-by: Michael Meeks <michael.meeks@suse.com>
-rw-r--r--oox/inc/oox/core/xmlfilterbase.hxx2
-rw-r--r--oox/source/core/xmlfilterbase.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/oox/inc/oox/core/xmlfilterbase.hxx b/oox/inc/oox/core/xmlfilterbase.hxx
index 0e015da7fa0b..e001df0e3cce 100644
--- a/oox/inc/oox/core/xmlfilterbase.hxx
+++ b/oox/inc/oox/core/xmlfilterbase.hxx
@@ -235,7 +235,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 583170b71021..e7db9433479c 100644
--- a/oox/source/core/xmlfilterbase.cxx
+++ b/oox/source/core/xmlfilterbase.cxx
@@ -236,7 +236,7 @@ XmlFilterBase::~XmlFilterBase()
// ----------------------------------------------------------------------------
-void XmlFilterBase::importDocumentProperties() throw()
+void XmlFilterBase::importDocumentProperties()
{
Reference< XMultiServiceFactory > xFactory( getServiceFactory(), UNO_QUERY );
MediaDescriptor aMediaDesc( getMediaDescriptor() );