summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlatr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/html/htmlatr.cxx')
-rw-r--r--sw/source/filter/html/htmlatr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlatr.cxx b/sw/source/filter/html/htmlatr.cxx
index 25581eb3ce2d..4e3548ff2981 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -920,7 +920,7 @@ void OutHTML_SwFmt( Writer& rWrt, const SwFmt& rFmt,
}
if( rHWrt.bCfgOutStyles &&
- (pFmtInfo->aClass.Len() || pFmtInfo->bScriptDependent) )
+ (!pFmtInfo->aClass.isEmpty() || pFmtInfo->bScriptDependent) )
{
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_class)
.append("=\"");
@@ -2706,7 +2706,7 @@ static Writer& OutHTML_SvxFont( Writer& rWrt, const SfxPoolItem& rHt )
if( rHTMLWrt.bTagOn )
{
- String aNames;
+ OUString aNames;
SwHTMLWriter::PrepareFontList( ((const SvxFontItem&)rHt), aNames, 0,
rHTMLWrt.IsHTMLMode(HTMLMODE_FONT_GENERIC) );
OStringBuffer sOut;
@@ -3115,7 +3115,7 @@ static Writer& OutHTML_SwTxtCharFmt( Writer& rWrt, const SfxPoolItem& rHt )
else
sOut.append(OOO_STRING_SVTOOLS_HTML_span);
if( rHTMLWrt.bCfgOutStyles &&
- (pFmtInfo->aClass.Len() || pFmtInfo->bScriptDependent) )
+ (!pFmtInfo->aClass.isEmpty() || pFmtInfo->bScriptDependent) )
{
sOut.append(' ').append(OOO_STRING_SVTOOLS_HTML_O_class)
.append("=\"");