1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Allow user to enter range in hex format

This commit is contained in:
John Cortell 2008-04-02 23:35:24 +00:00
parent 3f4bcfc489
commit 253c339287

View file

@ -386,7 +386,7 @@ public class AddWatchpointDialog extends Dialog implements ModifyListener, Selec
}
public BigInteger getRange() {
return new BigInteger( fRange );
return BigInteger.valueOf( Long.decode(fRange).longValue() );
}
public void initializeRange( boolean enable, String range ) {