summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-09 12:59:28 +0200
committerNoel Grandin <noel@peralex.com>2013-09-11 09:45:34 +0200
commita2ea07f0b944ebb3506c8fafd285ef3bdff23e99 (patch)
treea605b6f43ccf402d500c2fba577aebe4b52b51c8 /sc
parentb929c663847fb8167824609a8748d55549418a81 (diff)
convert include/editeng/editdata.hxx from String to OUString
Change-Id: I5bdb26880448ce0f71bf1b6639fcf2db3e472a50
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/html/htmlpars.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/html/htmlpars.cxx b/sc/source/filter/html/htmlpars.cxx
index 2a33cb87276f..fa89af0976bd 100644
--- a/sc/source/filter/html/htmlpars.cxx
+++ b/sc/source/filter/html/htmlpars.cxx
@@ -2428,7 +2428,7 @@ bool ScHTMLTable::IsEmptyCell() const
bool ScHTMLTable::IsSpaceCharInfo( const ImportInfo& rInfo )
{
- return (rInfo.nToken == HTML_TEXTTOKEN) && (rInfo.aText.Len() == 1) && (rInfo.aText.GetChar( 0 ) == ' ');
+ return (rInfo.nToken == HTML_TEXTTOKEN) && (rInfo.aText.getLength() == 1) && (rInfo.aText[ 0 ] == ' ');
}
ScHTMLTable::ScHTMLEntryPtr ScHTMLTable::CreateEntry() const