summaryrefslogtreecommitdiff
path: root/include/vcl/i18nhelp.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /include/vcl/i18nhelp.hxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'include/vcl/i18nhelp.hxx')
-rw-r--r--include/vcl/i18nhelp.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/i18nhelp.hxx b/include/vcl/i18nhelp.hxx
index 4263fa481291..71ca315544ce 100644
--- a/include/vcl/i18nhelp.hxx
+++ b/include/vcl/i18nhelp.hxx
@@ -55,7 +55,7 @@ private:
LocaleDataWrapper* mpLocaleDataWrapper;
utl::TransliterationWrapper* mpTransliterationWrapper;
- sal_Bool mbTransliterateIgnoreCase;
+ bool mbTransliterateIgnoreCase;
SAL_DLLPRIVATE void ImplDestroyWrappers();
@@ -72,10 +72,10 @@ public:
sal_Int32 CompareString( const OUString& rStr1, const OUString& rStr2 ) const;
- sal_Bool MatchString( const OUString& rStr1, const OUString& rStr2 ) const;
- sal_Bool MatchMnemonic( const OUString& rString, sal_Unicode cMnemonicChar ) const;
+ bool MatchString( const OUString& rStr1, const OUString& rStr2 ) const;
+ bool MatchMnemonic( const OUString& rString, sal_Unicode cMnemonicChar ) const;
- OUString GetNum( long nNumber, sal_uInt16 nDecimals, sal_Bool bUseThousandSep = sal_True, sal_Bool bTrailingZeros = sal_True ) const;
+ OUString GetNum( long nNumber, sal_uInt16 nDecimals, bool bUseThousandSep = true, bool bTrailingZeros = true ) const;
static OUString filterFormattingChars( const OUString& );
};