Kaydet (Commit) b4b38d64 authored tarafından Oliver Bolte's avatar Oliver Bolte

#i10000# type cast (warning)

üst 37b49c8b
......@@ -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()
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