From 2da77f3e1328d1c3689f97714a4157814d83b8a0 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 20 Oct 2015 11:44:40 +0200 Subject: loplugin:defaultparams Change-Id: I8485bec1c31597e5a27db706a907eda788a053bf --- basctl/source/basicide/baside2b.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basctl') 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); -- cgit