summaryrefslogtreecommitdiff
path: root/sw/qa/extras/odfimport
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-05-15 18:09:37 +0200
committerMichael Stahl <mstahl@redhat.com>2015-05-15 20:56:37 +0200
commit97887cd810194ee556d2ec12f2a8be40075c29d2 (patch)
tree64d9d840048e10aaf1b3485162562ce80e8f776b /sw/qa/extras/odfimport
parentecf9f9f8697dc53798d6d4a6c6db84ac2ed51422 (diff)
tdf#91140: ODF import: try to ignore invalid draw:fill="solid"
... which was apparently written by LO >= 4.1 on a frame with image background, under unknown circumstances. Change-Id: Ie86643ab67f58bfe5c19d6a1f80a7af8f793edf2
Diffstat (limited to 'sw/qa/extras/odfimport')
-rw-r--r--sw/qa/extras/odfimport/odfimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/odfimport/odfimport.cxx b/sw/qa/extras/odfimport/odfimport.cxx
index 551c2de35f05..625905da206e 100644
--- a/sw/qa/extras/odfimport/odfimport.cxx
+++ b/sw/qa/extras/odfimport/odfimport.cxx
@@ -573,7 +573,7 @@ DECLARE_ODFIMPORT_TEST(fdo81223, "fdo81223.odt")
uno::Reference<beans::XPropertySet> xFrame(xIndexAccess->getByIndex(0), uno::UNO_QUERY);
sal_Int32 nValue(0);
xFrame->getPropertyValue("BackColor") >>= nValue;
- CPPUNIT_ASSERT_EQUAL(sal_Int32(0xfeffffff), nValue);
+ CPPUNIT_ASSERT_EQUAL(sal_Int32(0xffffffff), nValue);
}
DECLARE_ODFIMPORT_TEST(fdo90130_1, "fdo90130-1.odt")