summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/brkdlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/basicide/brkdlg.cxx')
-rw-r--r--basctl/source/basicide/brkdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/brkdlg.cxx b/basctl/source/basicide/brkdlg.cxx
index bab9694795f1..f661b114264c 100644
--- a/basctl/source/basicide/brkdlg.cxx
+++ b/basctl/source/basicide/brkdlg.cxx
@@ -200,7 +200,7 @@ IMPL_LINK( BreakPointDialog, ButtonHdl, Button *, pButton, void )
{
BreakPoint* pBrk = new BreakPoint( nLine );
pBrk->bEnabled = m_pCheckBox->IsChecked();
- pBrk->nStopAfter = (size_t) m_pNumericField->GetValue();
+ pBrk->nStopAfter = static_cast<size_t>(m_pNumericField->GetValue());
m_aModifiedBreakPointList.InsertSorted( pBrk );
OUString aEntryStr( "# " + OUString::number(pBrk->nLine) );
m_pComboBox->InsertEntry( aEntryStr );