summaryrefslogtreecommitdiff
path: root/basctl/source/basicide
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-01-26 07:50:38 +0000
committerOliver Bolte <obo@openoffice.org>2007-01-26 07:50:38 +0000
commitb4b38d6471ef34c9bc8c7249eead423c105bc521 (patch)
tree3710626256acd7135576e2e2b6d52b27187a8367 /basctl/source/basicide
parent37b49c8b8403b37a0fd5d4a34be611a4396e9cc4 (diff)
#i10000# type cast (warning)
Diffstat (limited to 'basctl/source/basicide')
-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()
-