diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-08-17 12:56:49 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-08-17 19:53:42 +0400 |
commit | befc3e457df9daa7955752bb30cbad632da913de (patch) | |
tree | 303717f6a667923e6993e696b030521cd85b6cd9 | |
parent | 182bf2a63acceb435074e84f1237f1852491be94 (diff) |
fix string conversion
before commit 7a504c8752bf7c5accbb9bcc33a98f79b31b8bf2 there was:
aUnknownToken.CompareTo(sSaveToken) != COMPARE_EQUAL
Change-Id: I4c6411777f342e160c78b0ec591456e284e4e385
-rw-r--r-- | sw/source/filter/html/swhtml.cxx | 2 |
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: |