janitorial: bool is bool, not sal_Bool
Change-Id: Ia6fbde0521d503c3d774ebd265097804d375ed3b
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user