diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-07 23:09:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-08 13:04:48 +0100 |
commit | 5e6c0fb9ce04ec3f0115aa459e981372fa7e13be (patch) | |
tree | 1426a2253d8422396129654f166dba57384ff595 /svtools | |
parent | 6909de036217b4f903d2caa26062be26226468db (diff) |
dont need FLUSH afaics
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svhtml/parhtml.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx index 0a1513134e54..8cfe024ee77f 100644 --- a/svtools/source/svhtml/parhtml.cxx +++ b/svtools/source/svhtml/parhtml.cxx @@ -500,8 +500,7 @@ int HTMLParser::ScanText( const sal_Unicode cBreak ) const sal_uInt32 convertFlags = RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_DEFAULT | RTL_TEXTTOUNICODE_FLAGS_MBUNDEFINED_DEFAULT | - RTL_TEXTTOUNICODE_FLAGS_INVALID_DEFAULT | - RTL_TEXTTOUNICODE_FLAGS_FLUSH; + RTL_TEXTTOUNICODE_FLAGS_INVALID_DEFAULT; sal_Char cEncodedChar = static_cast<sal_Char>(cChar); cChar = rtl::OUString(&cEncodedChar, 1, eSrcEnc, convertFlags).toChar(); |