diff options
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/extras/xcellrangesquery.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sc/qa/extras/xcellrangesquery.cxx b/sc/qa/extras/xcellrangesquery.cxx index 9fc9139d03ad..5df4f71ea796 100644 --- a/sc/qa/extras/xcellrangesquery.cxx +++ b/sc/qa/extras/xcellrangesquery.cxx @@ -47,8 +47,6 @@ public: uno::Reference<sheet::XCellRangesQuery> init(); - void setRowVisible(bool bVisible); - //Testcases void testQueryColumnDifference(); void testQueryContentDifference(); @@ -158,7 +156,6 @@ void ScXCellRangesQuery::testQueryRowDifference() void ScXCellRangesQuery::testQueryVisibleCells() { - setRowVisible(false); rtl::OUString aExpected(RTL_CONSTASCII_USTRINGPARAM("Sheet1.A2")); uno::Reference<sheet::XCellRangesQuery> xCellRangesQuery = init(); uno::Reference<sheet::XSheetCellRanges> xRanges = xCellRangesQuery->queryVisibleCells(); @@ -167,11 +164,6 @@ void ScXCellRangesQuery::testQueryVisibleCells() CPPUNIT_ASSERT_MESSAGE("testQueryFormulaCells", aResult == aExpected); } -void ScXCellRangesQuery::setRowVisible(bool bVisible) -{ - -} - CPPUNIT_TEST_SUITE_REGISTRATION(ScXCellRangesQuery); CPPUNIT_PLUGIN_IMPLEMENT(); |