diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 10:10:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:05 +0000 |
commit | 2ce3912cab85e58c5addb0999e8b45b70ad22d1d (patch) | |
tree | 26dcb89dcdabb57507118f2daff0edcfb5570a30 /vcl | |
parent | 517613241d2d961c8edbb732f494821263c38e90 (diff) |
coverity#1130451 Uncaught exception
Change-Id: Id26567c2f2aceca2b681dfbc6a4de493fa331f3d
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qa/cppunit/canvasbitmaptest.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/qa/cppunit/canvasbitmaptest.cxx b/vcl/qa/cppunit/canvasbitmaptest.cxx index be8828483028..b86507e888df 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -441,8 +441,10 @@ private: return uno::Sequence< rendering::ARGBColor >(); } - virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToPARGB( const uno::Sequence< double >& ) throw (lang::IllegalArgumentException, - uno::RuntimeException) + virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToPARGB( const uno::Sequence< double >& ) + throw (lang::IllegalArgumentException, + uno::RuntimeException, + std::exception) { CPPUNIT_ASSERT_MESSAGE("convertToPARGB: method not implemented", false); return uno::Sequence< rendering::ARGBColor >(); |