diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:06:13 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:06:13 +0000 |
commit | dd7d4473de662feb18f4be121d88187c71fb3e9c (patch) | |
tree | e9d738ceef379cb192aeb28a337ca7f2e5e7bf66 | |
parent | f2b2e80ed6bd9cfbfefa2ec0c7ac4a833b4d69bd (diff) |
INTEGRATION: CWS warnings01 (1.5.16); FILE MERGED
2005/12/21 11:32:02 fs 1.5.16.1: #i55991# warning-free code
-rw-r--r-- | unotools/source/i18n/collatorwrapper.cxx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/unotools/source/i18n/collatorwrapper.cxx b/unotools/source/i18n/collatorwrapper.cxx index 4bcca5b12dcf..cbfdcc17b563 100644 --- a/unotools/source/i18n/collatorwrapper.cxx +++ b/unotools/source/i18n/collatorwrapper.cxx @@ -4,9 +4,9 @@ * * $RCSfile: collatorwrapper.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-09 09:44:03 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:06:13 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -70,6 +70,7 @@ CollatorWrapper::CollatorWrapper ( } catch (uno::Exception& rException) { + (void)rException; DBG_ERRORFILE ("CollatorWrapper: failed to create instance"); } } @@ -91,6 +92,7 @@ CollatorWrapper::CollatorWrapper ( } catch (uno::Exception& rException) { + (void)rException; DBG_ERRORFILE ("CollatorWrapper: failed to get component instance!"); } } @@ -115,6 +117,7 @@ CollatorWrapper::compareSubstring ( } catch (uno::RuntimeException& rRuntimeException) { + (void)rRuntimeException; DBG_ERRORFILE ("CollatorWrapper: compareSubstring failed"); } @@ -131,6 +134,7 @@ CollatorWrapper::compareString (const ::rtl::OUString& s1, const ::rtl::OUString } catch (uno::RuntimeException& rRuntimeException) { + (void)rRuntimeException; DBG_ERRORFILE ("CollatorWrapper: compareString failed"); } @@ -147,6 +151,7 @@ CollatorWrapper::listCollatorAlgorithms (const lang::Locale& rLocale) const } catch (uno::RuntimeException& rRuntimeException) { + (void)rRuntimeException; DBG_ERRORFILE ("CollatorWrapper: listCollatorAlgorithms failed"); } @@ -163,6 +168,7 @@ CollatorWrapper::listCollatorOptions (const ::rtl::OUString& rAlgorithm) const } catch (uno::RuntimeException& rRuntimeException) { + (void)rRuntimeException; DBG_ERRORFILE ("CollatorWrapper: listCollatorOptions failed"); } @@ -179,6 +185,7 @@ CollatorWrapper::loadDefaultCollator (const lang::Locale& rLocale, sal_Int32 nOp } catch (uno::RuntimeException& rRuntimeException) { + (void)rRuntimeException; DBG_ERRORFILE ("CollatorWrapper: loadDefaultCollator failed"); } @@ -197,6 +204,7 @@ CollatorWrapper::loadCollatorAlgorithm (const ::rtl::OUString& rAlgorithm, } catch (uno::RuntimeException& rRuntimeException) { + (void)rRuntimeException; DBG_ERRORFILE ("CollatorWrapper: loadCollatorAlgorithm failed"); } @@ -217,6 +225,7 @@ CollatorWrapper::loadCollatorAlgorithmWithEndUserOption ( } catch (uno::RuntimeException& rRuntimeException) { + (void)rRuntimeException; DBG_ERRORFILE ("CollatorWrapper: loadCollatorAlgorithmWithEndUserOption failed"); } } |