summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaskaran Singh <jvsg1303@gmail.com>2016-08-06 15:22:16 +0530
committerJaskaran Singh <jvsg1303@gmail.com>2016-08-06 15:22:16 +0530
commit4a2bf7bb092768a078f94391287d37eb194579bd (patch)
treeaa4ace72c669f715e432242d45b603eefb9d60cd
parentc2e220ff995cd4976c65bab1c34172dd4b303d1a (diff)
Enable cell alignment test in orcus interface feature/orcus-odf
Change-Id: I1078e29d6fa0c51a4457b43806340eaf10096a92
-rw-r--r--sc/qa/unit/data/xml/styles.xml2
-rw-r--r--sc/qa/unit/subsequent_filters-test.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/qa/unit/data/xml/styles.xml b/sc/qa/unit/data/xml/styles.xml
index b481219f5dd4..fa5cd2759ca2 100644
--- a/sc/qa/unit/data/xml/styles.xml
+++ b/sc/qa/unit/data/xml/styles.xml
@@ -29,6 +29,6 @@
</style:style>
<style:style style:name="Name10" style:family="table-cell" style:parent-style-name="Text">
<style:table-cell-properties style:vertical-align="middle"/>
- <style:paragraph-properties fo:text-align="start"/>
+ <style:paragraph-properties fo:text-align="end"/>
</style:style>
</office:styles>
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx
index 6562b4ab2b90..16bd4b1f3958 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -2863,7 +2863,7 @@ void ScFiltersTest::testOrcusODSStyleInterface()
/* Test for Style Name "10"
* Has ver align, and hor align
*/
- /*
+
pStyleSheet = pStyleSheetPool->FindCaseIns("Name10", SfxStyleFamily::Para);
CPPUNIT_ASSERT_MESSAGE("Style Name10 : Doesn't have Attribute hor justify, but it should have.",
pStyleSheet->GetItemSet().HasItem(ATTR_HOR_JUSTIFY, &pItem));
@@ -2877,7 +2877,7 @@ void ScFiltersTest::testOrcusODSStyleInterface()
const SvxVerJustifyItem* pVerJustify = static_cast<const SvxVerJustifyItem*>(pItem);
CPPUNIT_ASSERT_MESSAGE("Style Name10 :Error with ver justify", pVerJustify->GetValue() == SVX_VER_JUSTIFY_CENTER);
- */
+
}
#endif