diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:07:10 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:07:10 +0000 |
commit | 2ee939077226dc88590e4c3a44b7d0e0b0b004f7 (patch) | |
tree | 5c9213a158b4fcf3dc9588c9ff271b47091ecd1e /unotools/source/i18n | |
parent | a37dd1ba42265de3eab6410357c661b37d856154 (diff) |
INTEGRATION: CWS warnings01 (1.9.16); FILE MERGED
2005/12/21 11:32:03 fs 1.9.16.2: #i55991# warning-free code
2005/10/21 09:48:57 dbo 1.9.16.1: #i53898# warning free code
Diffstat (limited to 'unotools/source/i18n')
-rw-r--r-- | unotools/source/i18n/numberformatcodewrapper.cxx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/unotools/source/i18n/numberformatcodewrapper.cxx b/unotools/source/i18n/numberformatcodewrapper.cxx index eebd1e4aec38..f2a8dd76f7d2 100644 --- a/unotools/source/i18n/numberformatcodewrapper.cxx +++ b/unotools/source/i18n/numberformatcodewrapper.cxx @@ -4,9 +4,9 @@ * * $RCSfile: numberformatcodewrapper.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-09 09:45:28 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:07:10 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -51,9 +51,6 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #endif -#pragma hdrstop - - #define LOCALEDATA_LIBRARYNAME "i18npool" #define LOCALEDATA_SERVICENAME "com.sun.star.i18n.NumberFormatMapper" @@ -80,6 +77,7 @@ NumberFormatCodeWrapper::NumberFormatCodeWrapper( } catch ( Exception& e ) { + (void)e; DBG_ERRORFILE( "NumberFormatCodeWrapper ctor: Exception caught!" ); } } @@ -99,6 +97,7 @@ NumberFormatCodeWrapper::NumberFormatCodeWrapper( } catch ( Exception& e ) { + (void)e; DBG_ERRORFILE( "getComponentInstance: Exception caught!" ); } } @@ -127,6 +126,7 @@ NumberFormatCodeWrapper::getDefault( sal_Int16 formatType, sal_Int16 formatUsage } catch ( Exception& e ) { + (void)e; DBG_ERRORFILE( "getDefault: Exception caught!" ); } return ::com::sun::star::i18n::NumberFormatCode(); @@ -143,6 +143,7 @@ NumberFormatCodeWrapper::getFormatCode( sal_Int16 formatIndex ) const } catch ( Exception& e ) { + (void)e; DBG_ERRORFILE( "getFormatCode: Exception caught!" ); } return ::com::sun::star::i18n::NumberFormatCode(); @@ -159,6 +160,7 @@ NumberFormatCodeWrapper::getAllFormatCode( sal_Int16 formatUsage ) const } catch ( Exception& e ) { + (void)e; DBG_ERRORFILE( "getAllFormatCode: Exception caught!" ); } return ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::NumberFormatCode > (0); @@ -175,6 +177,7 @@ NumberFormatCodeWrapper::getAllFormatCodes() const } catch ( Exception& e ) { + (void)e; DBG_ERRORFILE( "getAllFormatCodes: Exception caught!" ); } return ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::NumberFormatCode > (0); |