summaryrefslogtreecommitdiff
path: root/sc/source/filter/html
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-28 15:17:24 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-28 15:19:39 +0100
commit0787bb32a9312755501593aadd8fa64aaf1884c3 (patch)
treed4582a2c850b6d7137585c1255e0f7f82593381e /sc/source/filter/html
parent99352eddafdbe57ce327c4d1b6bf273ce05f045f (diff)
Replace empty equalsAscii() with getLength().
Diffstat (limited to 'sc/source/filter/html')
-rw-r--r--sc/source/filter/html/htmlexp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/html/htmlexp.cxx b/sc/source/filter/html/htmlexp.cxx
index 33acd0f79e83..c9963b9c519e 100644
--- a/sc/source/filter/html/htmlexp.cxx
+++ b/sc/source/filter/html/htmlexp.cxx
@@ -361,7 +361,7 @@ void ScHTMLExport::WriteHeader()
OUT_LF();
//----------------------------------------------------------
- if (!xDocProps->getPrintedBy().equalsAscii(""))
+ if (xDocProps->getPrintedBy().getLength())
{
OUT_COMMENT( GLOBSTR( STR_DOC_INFO ) );
String aStrOut( GLOBSTR( STR_DOC_PRINTED ) );