diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-12-01 09:44:57 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-12-01 09:45:03 +0100 |
commit | eb251522ebe462903c96881ae9b99814700c84d3 (patch) | |
tree | 617e7b99db5665cd8488ff82911561015fd903cd /sc | |
parent | 2d0998f871cef5ce32cda68a3320bb9f7b29cd58 (diff) |
-Werror=unused-parameter fix (completely removed unused setRowVisible())
Diffstat (limited to 'sc')
-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(); |