Kaydet (Commit) 2da77f3e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:defaultparams

Change-Id: I8485bec1c31597e5a27db706a907eda788a053bf
üst 7ba37116
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment