From a2ea07f0b944ebb3506c8fafd285ef3bdff23e99 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 9 Sep 2013 12:59:28 +0200 Subject: convert include/editeng/editdata.hxx from String to OUString Change-Id: I5bdb26880448ce0f71bf1b6639fcf2db3e472a50 --- sc/source/filter/html/htmlpars.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc') 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 -- cgit