From f8752a760f18a54f6e5907f3d7567be7af69b584 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 25 Sep 2012 12:59:13 +0200 Subject: sal_Bool -> bool Change-Id: Idacea435ecf403770083f5c1e75c3ad1992ec14a --- i18npool/source/numberformatcode/numberformatcode.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'i18npool/source/numberformatcode') diff --git a/i18npool/source/numberformatcode/numberformatcode.cxx b/i18npool/source/numberformatcode/numberformatcode.cxx index 6ec23799719a..99958212a86e 100644 --- a/i18npool/source/numberformatcode/numberformatcode.cxx +++ b/i18npool/source/numberformatcode/numberformatcode.cxx @@ -31,7 +31,7 @@ NumberFormatCodeMapper::NumberFormatCodeMapper( ::com::sun::star::uno::XComponentContext >& rxContext ) : mxContext( rxContext ), - bFormatsValid( sal_False ) + bFormatsValid( false ) { } @@ -154,7 +154,7 @@ void NumberFormatCodeMapper::setupLocale( const ::com::sun::star::lang::Locale& || aLocale.Language != rLocale.Language || aLocale.Variant != rLocale.Variant ) { - bFormatsValid = sal_False; + bFormatsValid = false; aLocale = rLocale; } } @@ -170,7 +170,7 @@ void NumberFormatCodeMapper::getFormats( const ::com::sun::star::lang::Locale& r aFormatSeq = ::com::sun::star::uno::Sequence< ::com::sun::star::i18n::FormatElement > (0); else aFormatSeq = mxLocaleData->getAllFormats( aLocale ); - bFormatsValid = sal_True; + bFormatsValid = true; } } -- cgit