diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 10:11:39 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-10 11:21:06 +0000 |
commit | a00f5c01310fead4a1ba6ff964686108e83be63b (patch) | |
tree | 08b275c39f2449a06033fa18747ab751f7eb835d /vcl | |
parent | 6165535dc95f4868c86e3c71724c2f29b12ef292 (diff) |
coverity#1130449 Uncaught exception
Change-Id: I3d357d1346da173f0ee40b6b316e26d7f75bd4d5
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qa/cppunit/canvasbitmaptest.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/canvasbitmaptest.cxx b/vcl/qa/cppunit/canvasbitmaptest.cxx index 1bd9d74d60f4..ca039001cd14 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -412,7 +412,9 @@ private: return rendering::RenderingIntent::PERCEPTUAL; } - virtual uno::Sequence< beans::PropertyValue > SAL_CALL getProperties( ) throw (uno::RuntimeException) + virtual uno::Sequence< beans::PropertyValue > SAL_CALL getProperties() + throw (uno::RuntimeException, + std::exception) { CPPUNIT_ASSERT_MESSAGE("getProperties: method not implemented", false ); return uno::Sequence< ::beans::PropertyValue >(); |