summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2013-08-17 12:56:49 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2013-08-17 19:53:42 +0400
commitbefc3e457df9daa7955752bb30cbad632da913de (patch)
tree303717f6a667923e6993e696b030521cd85b6cd9 /sw
parent182bf2a63acceb435074e84f1237f1852491be94 (diff)
fix string conversion
before commit 7a504c8752bf7c5accbb9bcc33a98f79b31b8bf2 there was: aUnknownToken.CompareTo(sSaveToken) != COMPARE_EQUAL Change-Id: I4c6411777f342e160c78b0ec591456e284e4e385
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/html/swhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index 87fc2c2a86fd..1f88229c5641 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -1225,7 +1225,7 @@ void SwHTMLParser::NextToken( int nToken )
switch( nToken )
{
case HTML_UNKNOWNCONTROL_OFF:
- if( aUnknownToken.startsWith(sSaveToken) )
+ if( aUnknownToken != sSaveToken )
return;
case HTML_FRAMESET_ON:
case HTML_HEAD_OFF: