Kaydet (Commit) 919187cb authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1194939 Uncaught exception

Change-Id: I679b494c7c563a776da7ee891c0f4e92926fcfe4
üst 43155517
...@@ -71,7 +71,7 @@ public: ...@@ -71,7 +71,7 @@ public:
// from FilterBase // from FilterBase
virtual bool importDocument() throw() SAL_OVERRIDE; virtual bool importDocument() throw() SAL_OVERRIDE;
virtual bool exportDocument() throw() SAL_OVERRIDE; virtual bool exportDocument() throw (std::exception) SAL_OVERRIDE;
// only needed for import, leave them empty, refactor later XmlFilterBase to export and import base? // 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; } virtual sal_Int32 getSchemeClr( sal_Int32 /* nColorSchemeToken */ ) const { return 0; }
......
...@@ -329,7 +329,7 @@ bool PowerPointExport::importDocument() throw() ...@@ -329,7 +329,7 @@ bool PowerPointExport::importDocument() throw()
return false; return false;
} }
bool PowerPointExport::exportDocument() throw() bool PowerPointExport::exportDocument() throw (std::exception)
{ {
DrawingML::ResetCounters(); DrawingML::ResetCounters();
maShapeMap.clear (); maShapeMap.clear ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment