summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-10-14 18:05:50 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-10-16 18:45:20 +0200
commit5c5df097e696dfb186a32838bb77bee3d244b058 (patch)
tree10150b5643f31aa103417fec3afbd3f47a2acc5d /connectivity
parent1883d4f10f4d6df0da27b5659724188adbf1d3a8 (diff)
janitorial: bool is bool, not sal_Bool
Change-Id: Ia6fbde0521d503c3d774ebd265097804d375ed3b
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/commontools/FValue.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx
index 89f1f104d717..c6c038f72c19 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -1077,12 +1077,12 @@ bool ORowSetValue::getBool() const
const static OUString s_sFalse("false");
if ( sValue.equalsIgnoreAsciiCase(s_sTrue) || (sValue == "1") )
{
- bRet = sal_True;
+ bRet = true;
break;
}
else if ( sValue.equalsIgnoreAsciiCase(s_sFalse) || (sValue == "0") )
{
- bRet = sal_False;
+ bRet = false;
break;
}
}