summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-20 11:44:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-20 11:44:40 +0200
commit2da77f3e1328d1c3689f97714a4157814d83b8a0 (patch)
treed16674aa92e0314f08374cc8e8563a96ddd37c7e /basctl
parent7ba3711606ec709217ade66d3281668ecadf2d50 (diff)
loplugin:defaultparams
Change-Id: I8485bec1c31597e5a27db706a907eda788a053bf
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2b.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index d4cdd2cb2bca..9f98b8d40a1d 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -1870,7 +1870,7 @@ StackWindow::StackWindow (Layout* pParent) :
aTreeListBox->SetPosPixel( Point( DWBORDER, nVirtToolBoxHeight ) );
aTreeListBox->SetHighlightRange();
aTreeListBox->SetSelectionMode( NO_SELECTION );
- aTreeListBox->InsertEntry( OUString(), 0 );
+ aTreeListBox->InsertEntry( OUString() );
aTreeListBox->Show();
SetText(IDEResId(RID_STR_STACKNAME).toString());
@@ -1974,7 +1974,7 @@ void StackWindow::UpdateCalls()
}
aEntry += ")";
}
- aTreeListBox->InsertEntry( aEntry, 0 );
+ aTreeListBox->InsertEntry( aEntry );
nScope++;
pMethod = StarBASIC::GetActiveMethod( nScope );
}
@@ -1986,7 +1986,7 @@ void StackWindow::UpdateCalls()
else
{
aTreeListBox->SetSelectionMode( NO_SELECTION );
- aTreeListBox->InsertEntry( OUString(), 0 );
+ aTreeListBox->InsertEntry( OUString() );
}
aTreeListBox->SetUpdateMode(true);