From b4b38d6471ef34c9bc8c7249eead423c105bc521 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 26 Jan 2007 07:50:38 +0000 Subject: #i10000# type cast (warning) --- basctl/source/basicide/brkdlg.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'basctl/source/basicide') 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() - -- cgit