summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-20 08:42:32 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-20 08:42:32 +0200
commitc4e8c39e67b555dbbf9ccbf98f2b22795a862f7d (patch)
tree2882942c9ad3e6b6ab1d6c5c08e92544f933b011
parent61358e8efb2989e1e7d338eaee700ec6d2a1e017 (diff)
loplugin:defaultparams
Change-Id: If40d95d19a81c847ba909f0e2292103e8302e1aa
-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);