summaryrefslogtreecommitdiff
path: root/connectivity/source/commontools/FValue.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/commontools/FValue.cxx')
-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;
}
}