diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/html/htmlexp.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sc/source/filter/html/htmlexp.cxx b/sc/source/filter/html/htmlexp.cxx index c48c570152f1..ec550e2e9703 100644 --- a/sc/source/filter/html/htmlexp.cxx +++ b/sc/source/filter/html/htmlexp.cxx @@ -736,11 +736,6 @@ void ScHTMLExport::WriteTables() // <TABLE ...> rtl::OStringBuffer aByteStrOut(OOO_STRING_SVTOOLS_HTML_table); - // FRAME=VOID, we do the styling of the cells in <TD> - aByteStrOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_frame). - append(RTL_CONSTASCII_STRINGPARAM("=\"")). - append(OOO_STRING_SVTOOLS_HTML_TF_void).append('"'); - bTabHasGraphics = bTabAlignedLeft = false; if ( bAll && pDrawLayer ) PrepareGraphics( pDrawLayer, nTab, nStartCol, nStartRow, @@ -770,11 +765,6 @@ void ScHTMLExport::WriteTables() append(RTL_CONSTASCII_STRINGPARAM("=\"")). append(static_cast<sal_Int32>(nColCnt)).append('"'); - // RULES=NONE, we do the styling of the cells in <TD> - aByteStrOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_rules). - append(RTL_CONSTASCII_STRINGPARAM("=\"")). - append(OOO_STRING_SVTOOLS_HTML_TR_none).append('"'); - // BORDER=0, we do the styling of the cells in <TD> aByteStrOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_border). append(RTL_CONSTASCII_STRINGPARAM("=\"0\"")); |