Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorJohn Cortell2008-04-02 23:35:24 +0000
committerJohn Cortell2008-04-02 23:35:24 +0000
commit253c33928763775486227b74d3c4e2f62972a70e (patch)
tree1f183248cf3d6e62a1692fb61dcf49fabcf2185c /debug
parent3f4bcfc48922dec01cf42ef813946c17f8597f99 (diff)
downloadorg.eclipse.cdt-253c33928763775486227b74d3c4e2f62972a70e.tar.gz
org.eclipse.cdt-253c33928763775486227b74d3c4e2f62972a70e.tar.xz
org.eclipse.cdt-253c33928763775486227b74d3c4e2f62972a70e.zip
Allow user to enter range in hex format
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddWatchpointDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddWatchpointDialog.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddWatchpointDialog.java
index f1d5ca96b97..3c42f7ba625 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddWatchpointDialog.java
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/AddWatchpointDialog.java
@@ -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 ) {

Back to the top