summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-25 12:58:18 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-25 20:19:10 +0100
commitdde3c84d4492f0bea8e5509bedc1313d6e1fd70b (patch)
tree48380a9f12619762465ef8ab6b12c2292d285d1e /sd/source
parente95b80d9916b8eaf012c23b7f1abbc40e99e64fb (diff)
coverity#737762 Uncaught exception
Change-Id: Iaa34147326ebcb3a29b922c29c0a1fd6b4a5f515
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/filter/eppt/epptooxml.hxx2
-rw-r--r--sd/source/filter/eppt/pptx-epptooxml.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/eppt/epptooxml.hxx b/sd/source/filter/eppt/epptooxml.hxx
index 23e5b8e383dc..05359fc3d6ae 100644
--- a/sd/source/filter/eppt/epptooxml.hxx
+++ b/sd/source/filter/eppt/epptooxml.hxx
@@ -71,7 +71,7 @@ public:
// from FilterBase
virtual bool importDocument() throw() SAL_OVERRIDE;
- virtual bool exportDocument() throw (std::exception) SAL_OVERRIDE;
+ virtual bool exportDocument() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// only needed for import, leave them empty, refactor later XmlFilterBase to export and import base?
virtual sal_Int32 getSchemeClr( sal_Int32 /* nColorSchemeToken */ ) const { return 0; }
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx
index 886cb9459239..980befa27606 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -330,7 +330,7 @@ bool PowerPointExport::importDocument() throw()
return false;
}
-bool PowerPointExport::exportDocument() throw (std::exception)
+bool PowerPointExport::exportDocument() throw (css::uno::RuntimeException, std::exception)
{
DrawingML::ResetCounters();
maShapeMap.clear ();