diff options
Diffstat (limited to 'sc/qa/unit/ucalc.cxx')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index f8aa50bef874..2e1c8fc40341 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -1435,7 +1435,7 @@ CPPUNIT_TEST_FIXTURE(Test, testIteratorsUnallocatedColumnsAttributes) vcl::Font aFont; const ScPatternAttr* pattern = m_pDoc->GetPattern(m_pDoc->MaxCol(), 1, 0); pattern->fillFontOnly(aFont); - CPPUNIT_ASSERT_EQUAL_MESSAGE("font should be bold", WEIGHT_BOLD, aFont.GetWeight()); + CPPUNIT_ASSERT_EQUAL_MESSAGE("font should be bold", WEIGHT_BOLD, aFont.GetWeightMaybeAskConfig()); // Test iterators. ScDocAttrIterator docit( *m_pDoc, 0, allocatedColsCount - 1, 1, allocatedColsCount, 2 ); @@ -3097,6 +3097,7 @@ CPPUNIT_TEST_FIXTURE(Test, testFunctionLists) "ADDRESS", "AREAS", "CHOOSE", + "CHOOSECOLS", "CHOOSEROWS", "COLUMN", "COLUMNS", @@ -3108,6 +3109,7 @@ CPPUNIT_TEST_FIXTURE(Test, testFunctionLists) "FILTER", "GETPIVOTDATA", "HLOOKUP", + "HSTACK", "HYPERLINK", "INDEX", "INDIRECT", @@ -3127,6 +3129,7 @@ CPPUNIT_TEST_FIXTURE(Test, testFunctionLists) "TOROW", "UNIQUE", "VLOOKUP", + "VSTACK", "WRAPCOLS", "WRAPROWS", "XLOOKUP", |