diff options
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/excel/xestyle.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx index ca0db5c3e42f..a36f75e8921b 100644 --- a/sc/source/filter/excel/xestyle.cxx +++ b/sc/source/filter/excel/xestyle.cxx @@ -1160,6 +1160,13 @@ void XclExpDxfFont::SaveXml(XclExpXmlStream& rStrm) FSEND); } + if (maDxfData.nFontHeight) + { + rStyleSheet->singleElement(XML_sz, + XML_val, OString::number(*maDxfData.nFontHeight/20).getStr(), + FSEND); + } + if (maDxfData.eUnder) { const char* pVal = getUnderlineOOXValue(maDxfData.eUnder.get()); |