diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 10:09:15 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:05 +0000 |
commit | 7cc3998290a63db6beb6af1bbbd4860e5100fe5f (patch) | |
tree | fb364cb273cb98d4883ce54be70076afd24c9d68 /vcl | |
parent | c7e6509d471804a1b18eb65ce3b42d48e34d0e28 (diff) |
coverity#1130453 Uncaught exception
Change-Id: I54f868c7ab88b3a9be0b91fcceee95d522a6b2f8
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 ccae63c477bc..9ade183b6537 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -462,8 +462,10 @@ private: return uno::Sequence< double >(); } - virtual uno::Sequence< double > SAL_CALL convertFromPARGB( const uno::Sequence< rendering::ARGBColor >& ) throw (lang::IllegalArgumentException, - uno::RuntimeException) + virtual uno::Sequence< double > SAL_CALL convertFromPARGB( const uno::Sequence< rendering::ARGBColor >& ) + throw (lang::IllegalArgumentException, + uno::RuntimeException, + std::exception) { CPPUNIT_ASSERT_MESSAGE("convertFromPARGB: this method is not expected to be called!", false); return uno::Sequence< double >(); |