|
|
|
@ -390,13 +390,13 @@ void Document::generateFrameBorder( QDomElement& frameElementOut, const wvWare::
|
|
|
|
|
{
|
|
|
|
|
// Frame borders
|
|
|
|
|
|
|
|
|
|
if ( brcTop.ico != 255 && brcTop.dptLineWidth != 255 ) // see tablehandler.cpp
|
|
|
|
|
if ( brcTop.cv != 255 && brcTop.dptLineWidth != 255 ) // see tablehandler.cpp
|
|
|
|
|
Conversion::setBorderAttributes( frameElementOut, brcTop, "t" );
|
|
|
|
|
if ( brcBottom.ico != 255 && brcBottom.dptLineWidth != 255 ) // see tablehandler.cpp
|
|
|
|
|
if ( brcBottom.cv != 255 && brcBottom.dptLineWidth != 255 ) // see tablehandler.cpp
|
|
|
|
|
Conversion::setBorderAttributes( frameElementOut, brcBottom, "b" );
|
|
|
|
|
if ( brcLeft.ico != 255 && brcLeft.dptLineWidth != 255 ) // could still be 255, for first column
|
|
|
|
|
if ( brcLeft.cv != 255 && brcLeft.dptLineWidth != 255 ) // could still be 255, for first column
|
|
|
|
|
Conversion::setBorderAttributes( frameElementOut, brcLeft, "l" );
|
|
|
|
|
if ( brcRight.ico != 255 && brcRight.dptLineWidth != 255 ) // could still be 255, for last column
|
|
|
|
|
if ( brcRight.cv != 255 && brcRight.dptLineWidth != 255 ) // could still be 255, for last column
|
|
|
|
|
Conversion::setBorderAttributes( frameElementOut, brcRight, "r" );
|
|
|
|
|
|
|
|
|
|
// Frame background brush (color and fill style)
|
|
|
|
|