diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 10:05:51 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:04 +0000 |
commit | d0492482b41dcab52769b9b4c33a94cba6ab09b7 (patch) | |
tree | 4fedce6a2139481d4e58fe3f5926f27644ca920b /vcl/qa/cppunit | |
parent | 14b055d92cfea3515f15634d8f8a1ff8a6f7c0fd (diff) |
coverity#1130465 Uncaught exception
Change-Id: I67db69e52ac1dc5c1df5cda779be1a847838cce6
Diffstat (limited to 'vcl/qa/cppunit')
-rw-r--r-- | vcl/qa/cppunit/canvasbitmaptest.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vcl/qa/cppunit/canvasbitmaptest.cxx b/vcl/qa/cppunit/canvasbitmaptest.cxx index 16492d0b92cd..a9a5172d09c7 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -306,8 +306,11 @@ private: } virtual uno::Sequence< ::sal_Int8 > SAL_CALL getPixel( rendering::IntegerBitmapLayout&, - const geometry::IntegerPoint2D& ) throw (lang::IndexOutOfBoundsException, - rendering::VolatileContentDestroyedException, uno::RuntimeException) + const geometry::IntegerPoint2D& ) + throw (lang::IndexOutOfBoundsException, + rendering::VolatileContentDestroyedException, + uno::RuntimeException, + std::exception) { CPPUNIT_ASSERT_MESSAGE("getPixel: method not implemented", false); return uno::Sequence< sal_Int8 >(); |