diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-26 20:29:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-26 20:29:26 +0100 |
commit | a395c9fa387eabf2d09360f1023f5e3e66af21a8 (patch) | |
tree | a479eec25352c9dbb03b3cedea69a3a44cfefd83 | |
parent | 1371fbf08bae2e1d2282af19af9ce3c20ebe03f7 (diff) |
loplugin:literaltoboolconversion
Change-Id: I9f601252a24e935e81716213a6733ee2adb1489f
-rw-r--r-- | sw/source/filter/ww8/ww8par6.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx index c3aa747e8506..9e3596cd59f9 100644 --- a/sw/source/filter/ww8/ww8par6.cxx +++ b/sw/source/filter/ww8/ww8par6.cxx @@ -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 ) ); } |