diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-02-01 22:52:43 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-02-01 22:52:43 +0100 |
commit | f25555d66c1c50f81a2694447e8b197eb6ac97f7 (patch) | |
tree | 49709e23d0fbb72092436b66912c501914e87485 /sfx2 | |
parent | 34c5059b80777244e25dee1299ea258c8d7ba4fe (diff) |
Some cppcheck cleaning
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/notify/eventsupplier.cxx | 4 | ||||
-rw-r--r-- | sfx2/source/view/ipclient.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/notify/eventsupplier.cxx b/sfx2/source/notify/eventsupplier.cxx index e8d369374221..c5a6d6b1d6ac 100644 --- a/sfx2/source/notify/eventsupplier.cxx +++ b/sfx2/source/notify/eventsupplier.cxx @@ -811,7 +811,7 @@ void SfxGlobalEvents_Impl::implts_notifyJobExecution(const css::document::EventO xJobExecutor->notifyEvent(aEvent); } catch(const css::uno::RuntimeException& exRun) - { throw exRun; } + { throw; } catch(const css::uno::Exception&) {} } @@ -833,7 +833,7 @@ void SfxGlobalEvents_Impl::implts_checkAndExecuteEventBindings(const css::docume Execute(aAny, aEvent, 0); } catch(const css::uno::RuntimeException& exRun) - { throw exRun; } + { throw; } catch(const css::uno::Exception&) {} } diff --git a/sfx2/source/view/ipclient.cxx b/sfx2/source/view/ipclient.cxx index e2b408f0608f..1f5d49dafaae 100644 --- a/sfx2/source/view/ipclient.cxx +++ b/sfx2/source/view/ipclient.cxx @@ -281,7 +281,7 @@ void SAL_CALL SfxInPlaceClient_Impl::saveObject() } catch ( const uno::RuntimeException& e ) { - throw e; + throw; } catch ( uno::Exception& ) { @@ -311,7 +311,7 @@ void SAL_CALL SfxInPlaceClient_Impl::saveObject() } catch ( const uno::RuntimeException& e ) { - throw e; + throw; } catch ( uno::Exception& ) { |