diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 15:57:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 20:21:51 +0000 |
commit | c30677731c55688c764a669ecea1b1c4d17ae57d (patch) | |
tree | d9504ec60d770425a65e8503b1ff693227e5c5a1 /canvas | |
parent | 3671f9f30cc21187d85f077d96f753a3d4ebac8a (diff) |
coverity#706253 Uncaught exception
Change-Id: Id55f2ae36c03db59011ce11538fd45d9e909d5c0
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/simplecanvas/simplecanvasimpl.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/canvas/source/simplecanvas/simplecanvasimpl.cxx b/canvas/source/simplecanvas/simplecanvasimpl.cxx index 6f734b0dbec5..803de0585d0b 100644 --- a/canvas/source/simplecanvas/simplecanvasimpl.cxx +++ b/canvas/source/simplecanvas/simplecanvasimpl.cxx @@ -256,7 +256,8 @@ namespace createStrokingRenderState()); } - virtual void SAL_CALL drawPolyPolygon( const uno::Reference< rendering::XPolyPolygon2D >& xPolyPolygon ) throw (uno::RuntimeException) + virtual void SAL_CALL drawPolyPolygon( const uno::Reference< rendering::XPolyPolygon2D >& xPolyPolygon ) + throw (uno::RuntimeException, std::exception) { ::osl::MutexGuard aGuard( m_aMutex ); |