Kaydet (Commit) a395c9fa authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:literaltoboolconversion

Change-Id: I9f601252a24e935e81716213a6733ee2adb1489f
üst 1371fbf0
......@@ -2862,12 +2862,12 @@ void SwWW8ImplReader::Read_Bidi(sal_uInt16, const sal_uInt8* pData, short nLen)
{
if( nLen < 0 ) //Property end
{
bBidi = sal_False;
bBidi = false;
pCtrlStck->SetAttr(*pPaM->GetPoint(),RES_CHRATR_BIDIRTL);
}
else //Property start
{
bBidi = sal_True;
bBidi = true;
sal_uInt8 nBidi = *pData;
NewAttr( SfxInt16Item( RES_CHRATR_BIDIRTL, (nBidi!=0)? 1 : 0 ) );
}
......
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