summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-25 12:59:13 +0200
committerNoel Power <noel.power@suse.com>2012-09-26 11:20:34 +0100
commitf8752a760f18a54f6e5907f3d7567be7af69b584 (patch)
tree65ca641f397626b5513142dee94c5b2d33f081a8
parent300621ff72be787c5413edf46139b8c45ba0ff45 (diff)
sal_Bool -> bool
Change-Id: Idacea435ecf403770083f5c1e75c3ad1992ec14a
-rw-r--r--i18npool/inc/numberformatcode.hxx2
-rw-r--r--i18npool/source/numberformatcode/numberformatcode.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/i18npool/inc/numberformatcode.hxx b/i18npool/inc/numberformatcode.hxx
index 9433b111d44e..f89cbfeecbcd 100644
--- a/i18npool/inc/numberformatcode.hxx
+++ b/i18npool/inc/numberformatcode.hxx
@@ -58,7 +58,7 @@ private:
::com::sun::star::uno::Reference < ::com::sun::star::uno::XComponentContext > mxContext;
::com::sun::star::uno::Sequence< ::com::sun::star::i18n::FormatElement > aFormatSeq;
::com::sun::star::uno::Reference < ::com::sun::star::i18n::XLocaleData4 > mxLocaleData;
- sal_Bool bFormatsValid;
+ bool bFormatsValid;
void setupLocale( const ::com::sun::star::lang::Locale& rLocale );
void getFormats( const ::com::sun::star::lang::Locale& rLocale );
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;
}
}