diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 10:12:13 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:06 +0000 |
commit | 5852f3471777e2c4ff176a764757d821bca78f23 (patch) | |
tree | 834ae8d67582f3b2c054107db04cabca1dd5e272 /vcl | |
parent | a00f5c01310fead4a1ba6ff964686108e83be63b (diff) |
coverity#1130448 Uncaught exception
Change-Id: Ie0b0418191a47e89c9535d6f13c09e15e634a4b9
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 ca039001cd14..0ebc9a6d2526 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -436,8 +436,10 @@ private: return uno::Sequence< rendering::RGBColor >(); } - virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToARGB( const uno::Sequence< double >& ) throw (lang::IllegalArgumentException, - uno::RuntimeException) + virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToARGB( const uno::Sequence< double >& ) + throw (lang::IllegalArgumentException, + uno::RuntimeException, + std::exception) { CPPUNIT_ASSERT_MESSAGE("convertToARGB: method not implemented", false); return uno::Sequence< rendering::ARGBColor >(); |