Kaydet (Commit) 5c5df097 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

janitorial: bool is bool, not sal_Bool

Change-Id: Ia6fbde0521d503c3d774ebd265097804d375ed3b
üst 1883d4f1
...@@ -1077,12 +1077,12 @@ bool ORowSetValue::getBool() const ...@@ -1077,12 +1077,12 @@ bool ORowSetValue::getBool() const
const static OUString s_sFalse("false"); const static OUString s_sFalse("false");
if ( sValue.equalsIgnoreAsciiCase(s_sTrue) || (sValue == "1") ) if ( sValue.equalsIgnoreAsciiCase(s_sTrue) || (sValue == "1") )
{ {
bRet = sal_True; bRet = true;
break; break;
} }
else if ( sValue.equalsIgnoreAsciiCase(s_sFalse) || (sValue == "0") ) else if ( sValue.equalsIgnoreAsciiCase(s_sFalse) || (sValue == "0") )
{ {
bRet = sal_False; bRet = false;
break; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment