summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/brkdlg.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-12 15:09:22 +0200
committerNoel Grandin <noel@peralex.com>2015-08-14 10:52:46 +0200
commit9045d0bf35c9b4d5f6d8f791017124341abf8d4f (patch)
tree04c28c25dbabe5a9b1e2bb137abedcbdea6e31d9 /basctl/source/basicide/brkdlg.cxx
parent6d4f97b05b1bfe5aae395134b2dc35805c23b8c4 (diff)
loplugin: defaultparams
Change-Id: I89796134a0cce33279ba7f02492857a656e8aee3
Diffstat (limited to 'basctl/source/basicide/brkdlg.cxx')
-rw-r--r--basctl/source/basicide/brkdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/brkdlg.cxx b/basctl/source/basicide/brkdlg.cxx
index 4c50b69160d7..084d15eb8f51 100644
--- a/basctl/source/basicide/brkdlg.cxx
+++ b/basctl/source/basicide/brkdlg.cxx
@@ -81,7 +81,7 @@ BreakPointDialog::BreakPointDialog( vcl::Window* pParent, BreakPointList& rBrkPn
{
BreakPoint* pBrk = m_aModifiedBreakPointList.at( i );
OUString aEntryStr( "# " + OUString::number(pBrk->nLine) );
- m_pComboBox->InsertEntry( aEntryStr, COMBOBOX_APPEND );
+ m_pComboBox->InsertEntry( aEntryStr );
}
m_pComboBox->SetUpdateMode(true);
@@ -210,7 +210,7 @@ IMPL_LINK( BreakPointDialog, ButtonHdl, Button *, pButton )
pBrk->nStopAfter = (size_t) m_pNumericField->GetValue();
m_aModifiedBreakPointList.InsertSorted( pBrk );
OUString aEntryStr( "# " + OUString::number(pBrk->nLine) );
- m_pComboBox->InsertEntry( aEntryStr, COMBOBOX_APPEND );
+ m_pComboBox->InsertEntry( aEntryStr );
if (SfxDispatcher* pDispatcher = GetDispatcher())
pDispatcher->Execute( SID_BASICIDE_BRKPNTSCHANGED );
}