diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-25 12:50:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-25 14:27:34 +0000 |
commit | 2f989d2a828c3e6edc865d644e9ee38a941a3ee1 (patch) | |
tree | 729e05e7fbfecb862427de679deadf75ae5ce014 /sw/source | |
parent | f917ada4d7cd7b8e69036dbf10c06b83473dc6c7 (diff) |
coverity#738125 Uncaught exception
Change-Id: I24e0ba15e8b01add792500ef3863515d591f4d95
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/unocore/unochart.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unochart.cxx b/sw/source/core/unocore/unochart.cxx index c32fdbae8cbe..5f7f7acfe4fd 100644 --- a/sw/source/core/unocore/unochart.cxx +++ b/sw/source/core/unocore/unochart.cxx @@ -2032,8 +2032,8 @@ sal_Int64 SAL_CALL SwChartDataSequence::getSomething( const uno::Sequence< sal_I return 0; } -uno::Sequence< uno::Any > SAL_CALL SwChartDataSequence::getData( ) - throw (uno::RuntimeException) +uno::Sequence< uno::Any > SAL_CALL SwChartDataSequence::getData() + throw (uno::RuntimeException, std::exception) { SolarMutexGuard aGuard; if (bDisposed) |