diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2013-05-23 23:09:27 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-05-24 12:40:47 +0300 |
commit | 596f81b640633a9491a3c5c1a3eba9f7ca6ccdd3 (patch) | |
tree | 6872aac1bdd276676b4ffba613ba01851e8c61cc /sw | |
parent | c535cc8ff6def1da9182f1f978b50ca2089ba5f2 (diff) |
WaE: unreferenced local variable
Change-Id: I162574ccf28c88c379e7cc3f88cfe83bc13dc5d4
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/inc/wrong.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/inc/wrong.hxx b/sw/source/core/inc/wrong.hxx index 215fcd92bc51..37f56bf3d2b1 100644 --- a/sw/source/core/inc/wrong.hxx +++ b/sw/source/core/inc/wrong.hxx @@ -97,10 +97,10 @@ private: } } } - catch(::com::sun::star::container::NoSuchElementException& ex) + catch(::com::sun::star::container::NoSuchElementException&) { } - catch(::com::sun::star::uno::RuntimeException& ex) + catch(::com::sun::star::uno::RuntimeException&) { } @@ -131,10 +131,10 @@ private: } } } - catch(::com::sun::star::container::NoSuchElementException& ex) + catch(::com::sun::star::container::NoSuchElementException&) { } - catch(::com::sun::star::uno::RuntimeException& ex) + catch(::com::sun::star::uno::RuntimeException&) { } |