summaryrefslogtreecommitdiff
path: root/include/unotools/intlwrapper.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-19 12:30:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-19 12:47:07 +0100
commit973b47a336b239cc92f1789013d28e5bd55f859f (patch)
tree6481f2803208409896aecf6745239cf07953baab /include/unotools/intlwrapper.hxx
parent9ad3fc29dd98167c35fcb599da0b4e764ddf04dd (diff)
unotools: sal_Bool -> bool
Change-Id: I8051c0756e0474a5b4f748e0aa15a9922e82ea97
Diffstat (limited to 'include/unotools/intlwrapper.hxx')
-rw-r--r--include/unotools/intlwrapper.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/unotools/intlwrapper.hxx b/include/unotools/intlwrapper.hxx
index 6df81e901161..a28598c6a35f 100644
--- a/include/unotools/intlwrapper.hxx
+++ b/include/unotools/intlwrapper.hxx
@@ -56,7 +56,7 @@ private:
CollatorWrapper* pCaseCollator;
void ImplNewLocaleData() const;
- void ImplNewCollator( sal_Bool bCaseSensitive ) const;
+ void ImplNewCollator( bool bCaseSensitive ) const;
public:
@@ -81,14 +81,14 @@ public:
const CollatorWrapper* getCollator() const
{
if ( !pCollator )
- ImplNewCollator( sal_False );
+ ImplNewCollator( false );
return pCollator;
}
/// case sensitive collator
const CollatorWrapper* getCaseCollator() const
{
if ( !pCaseCollator )
- ImplNewCollator( sal_True );
+ ImplNewCollator( true );
return pCaseCollator;
}
};