summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-17 10:52:10 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-17 12:21:37 +0000
commit7cded3aad7190b9542859647f99b7451bb25df45 (patch)
treec7d0eef87a4974dc4b2819d61855a96a7a41df7a /unotools
parent99bf0c318b89c7d6acee364161b34b13d348a3bb (diff)
WaE: unused variables
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/i18n/numberformatcodewrapper.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unotools/source/i18n/numberformatcodewrapper.cxx b/unotools/source/i18n/numberformatcodewrapper.cxx
index 0774c7b0451e..f341f2f476d5 100644
--- a/unotools/source/i18n/numberformatcodewrapper.cxx
+++ b/unotools/source/i18n/numberformatcodewrapper.cxx
@@ -70,7 +70,7 @@ NumberFormatCodeWrapper::getDefault( sal_Int16 formatType, sal_Int16 formatUsage
if ( xNFC.is() )
return xNFC->getDefault( formatType, formatUsage, aLocale );
}
- catch ( const Exception& e )
+ catch ( const Exception& )
{
SAL_WARN( "unotools.i18n", "getDefault: Exception caught!" );
}
@@ -86,7 +86,7 @@ NumberFormatCodeWrapper::getFormatCode( sal_Int16 formatIndex ) const
if ( xNFC.is() )
return xNFC->getFormatCode( formatIndex, aLocale );
}
- catch ( const Exception& e )
+ catch ( const Exception& )
{
SAL_WARN( "unotools.i18n", "getFormatCode: Exception caught!" );
}
@@ -102,7 +102,7 @@ NumberFormatCodeWrapper::getAllFormatCode( sal_Int16 formatUsage ) const
if ( xNFC.is() )
return xNFC->getAllFormatCode( formatUsage, aLocale );
}
- catch ( const Exception& e )
+ catch ( const Exception& )
{
SAL_WARN( "unotools.i18n", "getAllFormatCode: Exception caught!" );
}
@@ -118,7 +118,7 @@ NumberFormatCodeWrapper::getAllFormatCodes() const
if ( xNFC.is() )
return xNFC->getAllFormatCodes( aLocale );
}
- catch ( const Exception& e )
+ catch ( const Exception& )
{
SAL_WARN( "unotools.i18n", "getAllFormatCodes: Exception caught!" );
}