summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/qa/extras/uiwriter/uiwriter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx b/sw/qa/extras/uiwriter/uiwriter.cxx
index e05c6ba9294a..9cbbc0729bba 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -2220,9 +2220,9 @@ void SwUiWriterTest::testTdf75137()
sal_uLong firstIndex = pShellCrsr->GetNode().GetIndex();
pShellCrsr->GotoFootnoteAnchor();
pWrtShell->InsertFootnote(OUString("This is second footnote"));
- pWrtShell->Up(false, 1);
+ pWrtShell->Up(false);
sal_uLong secondIndex = pShellCrsr->GetNode().GetIndex();
- pWrtShell->Down(false, 1);
+ pWrtShell->Down(false);
sal_uLong thirdIndex = pShellCrsr->GetNode().GetIndex();
CPPUNIT_ASSERT_EQUAL(firstIndex, thirdIndex);
CPPUNIT_ASSERT(firstIndex != secondIndex);