[Libreoffice-commits] core.git: sc/qa svtools/source
Jan Holesovsky
kendy at collabora.com
Fri Nov 18 14:08:59 UTC 2016
sc/qa/unit/bugfix-test.cxx | 13 +++++++++++++
sc/qa/unit/data/html/tdf103960.html |binary
svtools/source/svrtf/svparser.cxx | 4 ++--
3 files changed, 15 insertions(+), 2 deletions(-)
New commits:
commit 6264205ee7f719f454585ada69be0a320ddc69cb
Author: Jan Holesovsky <kendy at collabora.com>
Date: Fri Nov 18 14:51:12 2016 +0100
tdf#103960: The import of UCS2 data uses a different code path.
The commit b297f7bbfed83f87398231740e910afe6ebfbb97 was too eager from this
point of view, we shouldn't use SetSrcEncoding for UCS2 because in that case
we end up with RTL_TEXTENCODING_DONTKNOW in eSrcEnc.
Change-Id: Id8bcb08aee17c8258c074b481345a2795939edc0
diff --git a/sc/qa/unit/bugfix-test.cxx b/sc/qa/unit/bugfix-test.cxx
index 5d21670..649eba9 100644
--- a/sc/qa/unit/bugfix-test.cxx
+++ b/sc/qa/unit/bugfix-test.cxx
@@ -89,6 +89,7 @@ public:
void testTdf98657();
void testTdf88821();
void testTdf88821_2();
+ void testTdf103960();
void testRhbz1390776();
CPPUNIT_TEST_SUITE(ScFiltersTest);
@@ -101,6 +102,7 @@ public:
CPPUNIT_TEST(testTdf98657);
CPPUNIT_TEST(testTdf88821);
CPPUNIT_TEST(testTdf88821_2);
+ CPPUNIT_TEST(testTdf103960);
CPPUNIT_TEST(testRhbz1390776);
CPPUNIT_TEST_SUITE_END();
private:
@@ -271,6 +273,17 @@ void ScFiltersTest::testTdf88821_2()
xDocSh->DoClose();
}
+void ScFiltersTest::testTdf103960()
+{
+ ScDocShellRef xDocSh = loadDoc("tdf103960.", FORMAT_HTML);
+ ScDocument& rDoc = xDocSh->GetDocument();
+
+ // A1 should be 'Data', not the entire content of the file
+ CPPUNIT_ASSERT_EQUAL(OStringToOUString("Data", RTL_TEXTENCODING_UTF8), rDoc.GetString(0, 0, 0));
+
+ xDocSh->DoClose();
+}
+
void ScFiltersTest::testRhbz1390776()
{
ScDocShellRef xDocSh = loadDoc("rhbz1390776.", FORMAT_XLS_XML);
diff --git a/sc/qa/unit/data/html/tdf103960.html b/sc/qa/unit/data/html/tdf103960.html
new file mode 100644
index 0000000..3e07ac1
Binary files /dev/null and b/sc/qa/unit/data/html/tdf103960.html differ
diff --git a/svtools/source/svrtf/svparser.cxx b/svtools/source/svrtf/svparser.cxx
index ae6c1eb..0540e17 100644
--- a/svtools/source/svrtf/svparser.cxx
+++ b/svtools/source/svrtf/svparser.cxx
@@ -171,13 +171,13 @@ sal_uInt32 SvParser::GetNextChar()
{
if( 0xfe == c1 && 0xff == c2 )
{
- SetSrcEncoding(RTL_TEXTENCODING_UCS2);
+ eSrcEnc = RTL_TEXTENCODING_UCS2;
bUCS2BSrcEnc = true;
bSeekBack = false;
}
else if( 0xff == c1 && 0xfe == c2 )
{
- SetSrcEncoding(RTL_TEXTENCODING_UCS2);
+ eSrcEnc = RTL_TEXTENCODING_UCS2;
bUCS2BSrcEnc = false;
bSeekBack = false;
}
More information about the Libreoffice-commits
mailing list