diff options
author | Noel Grandin <noel@peralex.com> | 2012-09-25 12:59:13 +0200 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2012-09-26 11:20:34 +0100 |
commit | f8752a760f18a54f6e5907f3d7567be7af69b584 (patch) | |
tree | 65ca641f397626b5513142dee94c5b2d33f081a8 /i18npool/source/numberformatcode | |
parent | 300621ff72be787c5413edf46139b8c45ba0ff45 (diff) |
sal_Bool -> bool
Change-Id: Idacea435ecf403770083f5c1e75c3ad1992ec14a
Diffstat (limited to 'i18npool/source/numberformatcode')
-rw-r--r-- | i18npool/source/numberformatcode/numberformatcode.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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; } } |