Kaydet (Commit) 43f7217f authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#704127 coverity gold, typo, should be 0x0020 not 0x002

Change-Id: I22895d43efef47850dfb9162f75bf5a9e39f9614
üst ece57bd9
...@@ -7169,7 +7169,7 @@ void WW8DopTypography::WriteToMem(sal_uInt8 *&pData) const ...@@ -7169,7 +7169,7 @@ void WW8DopTypography::WriteToMem(sal_uInt8 *&pData) const
sal_uInt16 a16Bit = fKerningPunct; sal_uInt16 a16Bit = fKerningPunct;
a16Bit |= (iJustification << 1) & 0x0006; a16Bit |= (iJustification << 1) & 0x0006;
a16Bit |= (iLevelOfKinsoku << 3) & 0x0018; a16Bit |= (iLevelOfKinsoku << 3) & 0x0018;
a16Bit |= (f2on1 << 5) & 0x002; a16Bit |= (f2on1 << 5) & 0x0020;
a16Bit |= (reserved1 << 6) & 0x03C0; a16Bit |= (reserved1 << 6) & 0x03C0;
a16Bit |= (reserved2 << 10) & 0xFC00; a16Bit |= (reserved2 << 10) & 0xFC00;
Set_UInt16(pData,a16Bit); Set_UInt16(pData,a16Bit);
......
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