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:
parent
3f4bcfc489
commit
253c339287
1 changed files with 1 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue