Kaydet (Commit) b6e28518 authored tarafından Michael Stahl's avatar Michael Stahl

sw: avoid warning C4510: WW8_TCellVer6: default constructor could not

... be generated; apparently that class is never instantiated anyway,
just used for casting horribly in WW8TabBandDesc::ReadDef().

Change-Id: I4265d85b43b10135b9425c58b70e42d65d7e2038
üst ee6895c6
......@@ -238,6 +238,11 @@ struct WW8_BRCVer6 // BoRder Code (WW6 version)
// sal_uInt16 ico : 5; // 07C0 color code (see chp.ico)
// sal_uInt16 dxpSpace : 5; // F800 width of space to maintain between border and text within border.
// Must be 0 when BRC is a substructure of the TC. Stored in points for Windows.
WW8_BRCVer6()
{
memset(aBits1, 0, sizeof(aBits1));
}
sal_uInt8 dxpLineWidth() const
{ return aBits1[0] & 0x07; }
sal_uInt8 brcType() const
......
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