diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-10 10:09:51 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-10 10:14:18 +0200 |
commit | 277e98edce56e0d1c37403dce1f389eeb9018d30 (patch) | |
tree | b29aeaa880fc39982f73408b6f95a736e8538258 /framework | |
parent | 71540e1e47bcb1cea34861e13a47a558a88757e1 (diff) |
cid#1244948 Uncaught exception
Change-Id: I421f245fd3be90f0e1d08ad92b0723a64121ae12
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/inc/loadenv/loadenv.hxx | 2 | ||||
-rw-r--r-- | framework/source/loadenv/loadenv.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/inc/loadenv/loadenv.hxx b/framework/source/inc/loadenv/loadenv.hxx index 3abba6fd8f0b..95367eb745b1 100644 --- a/framework/source/inc/loadenv/loadenv.hxx +++ b/framework/source/inc/loadenv/loadenv.hxx @@ -522,7 +522,7 @@ private: the whole runtime can't be used any longer. */ css::uno::Reference< css::frame::XFrame > impl_searchRecycleTarget() - throw(LoadEnvException, css::uno::RuntimeException); + throw(LoadEnvException, css::uno::RuntimeException, std::exception); /** @short because showing of a frame is needed more than once ... it's implemented as an separate method .-) diff --git a/framework/source/loadenv/loadenv.cxx b/framework/source/loadenv/loadenv.cxx index 570f4d95ef20..f6526dd2f7a4 100644 --- a/framework/source/loadenv/loadenv.cxx +++ b/framework/source/loadenv/loadenv.cxx @@ -1387,7 +1387,7 @@ bool LoadEnv::impl_isFrameAlreadyUsedForLoading(const css::uno::Reference< css:: } css::uno::Reference< css::frame::XFrame > LoadEnv::impl_searchRecycleTarget() - throw(LoadEnvException, css::uno::RuntimeException) + throw(LoadEnvException, css::uno::RuntimeException, std::exception) { // SAFE -> .................................. osl::ClearableMutexGuard aReadLock(m_mutex); |