| author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-07 22:50:17 (GMT) |
|---|---|---|
| committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-08-07 22:52:09 (GMT) |
| commit | 96c5fb1dd28d2dbbe9d7130da518cbd5220bfddc (patch) (side-by-side diff) | |
| tree | e06a848bcd941ef5a66aa7e96404a764b67f8c85 | |
| parent | cd923cfccb9a784349d4097d4e67d68ee176a899 (diff) | |
| download | core-96c5fb1dd28d2dbbe9d7130da518cbd5220bfddc.zip core-96c5fb1dd28d2dbbe9d7130da518cbd5220bfddc.tar.gz | |
enable tests for fixed cursor row navigation
Change-Id: Ibd61def40372ef3915293414006251c60f5bda49
| -rw-r--r-- | sc/qa/unit/ucalc.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 8753a40..fc51b22 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -4629,9 +4629,7 @@ void Test::testFindAreaPosRowDown() pDoc->FindAreaPos(nCol, nRow, 0, 0, 1); - // BUG! This returns right now 4 because FindAreaPos does - // not yet work correctly with hidden rows - //CPPUNIT_ASSERT_EQUAL(static_cast<SCROW>(5), nRow); + CPPUNIT_ASSERT_EQUAL(static_cast<SCROW>(5), nRow); CPPUNIT_ASSERT_EQUAL(static_cast<SCCOL>(0), nCol); pDoc->FindAreaPos(nCol, nRow, 0, 0, 1); @@ -4649,9 +4647,7 @@ void Test::testFindAreaPosRowDown() pDoc->FindAreaPos(nCol, nRow, 0, 0, 1); - // BUG! This returns right now 4 because FindAreaPos does - // not yet work correctly with hidden rows - //CPPUNIT_ASSERT_EQUAL(static_cast<SCROW>(3), nRow); + CPPUNIT_ASSERT_EQUAL(static_cast<SCROW>(3), nRow); CPPUNIT_ASSERT_EQUAL(static_cast<SCCOL>(1), nCol); pDoc->FindAreaPos(nCol, nRow, 0, 0, 1); |
