diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-09 21:02:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-09 21:07:41 +0000 |
commit | 5267fc5e8a01953c8f55d53a470a414f510efcb5 (patch) | |
tree | 20e1ea45d516728764d3e7c128781ab92d74ac61 /vcl | |
parent | 3bba85609504c0a89f4330a6c8520930fedf0939 (diff) |
coverity#1130461 Uncaught exception
Change-Id: I6054816a63ec5a60e1c782001e8f5c115e40554f
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 85e1ecb4c6dc..ac20f1bafc8e 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -488,8 +488,10 @@ private: } virtual uno::Sequence< ::sal_Int8 > SAL_CALL convertToIntegerColorSpace( const uno::Sequence< ::sal_Int8 >& , - const uno::Reference< rendering::XIntegerBitmapColorSpace >& ) throw (lang::IllegalArgumentException, - uno::RuntimeException) + const uno::Reference< rendering::XIntegerBitmapColorSpace >& ) + throw (lang::IllegalArgumentException, + uno::RuntimeException, + std::exception) { CPPUNIT_ASSERT_MESSAGE("convertToIntegerColorSpace: method not implemented", false); return uno::Sequence< sal_Int8 >(); |