summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--basctl/source/basicide/brkdlg.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/basctl/source/basicide/brkdlg.cxx b/basctl/source/basicide/brkdlg.cxx
index effa62ad9183..5ab0ecaecbbe 100644
--- a/basctl/source/basicide/brkdlg.cxx
+++ b/basctl/source/basicide/brkdlg.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: brkdlg.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 00:28:00 $
+ * last change: $Author: obo $ $Date: 2007-01-26 08:50:38 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -216,7 +216,7 @@ IMPL_LINK( BreakPointDialog, ButtonHdl, Button *, pButton )
{
BreakPoint* pBrk = new BreakPoint( nLine );
pBrk->bEnabled = aCheckBox.IsChecked();
- pBrk->nStopAfter = aNumericField.GetValue();
+ pBrk->nStopAfter = (ULONG) aNumericField.GetValue();
m_aModifiedBreakPointList.InsertSorted( pBrk );
String aEntryStr( RTL_CONSTASCII_USTRINGPARAM( "# " ) );
aEntryStr += String::CreateFromInt32( pBrk->nLine );
@@ -289,4 +289,3 @@ BreakPoint* BreakPointDialog::GetSelectedBreakPoint()
-