mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
gotoAddress thread
This commit is contained in:
parent
9a9012d4ad
commit
b8f2b0eb09
1 changed files with 8 additions and 3 deletions
|
@ -326,7 +326,7 @@ public class TraditionalRendering extends AbstractMemoryRendering implements IRe
|
|||
super.deactivated();
|
||||
}
|
||||
|
||||
public void gotoAddress(BigInteger address)
|
||||
public void gotoAddress(final BigInteger address)
|
||||
{
|
||||
this.fRendering.gotoAddress(address);
|
||||
}
|
||||
|
@ -982,9 +982,14 @@ public class TraditionalRendering extends AbstractMemoryRendering implements IRe
|
|||
}
|
||||
}
|
||||
|
||||
public void goToAddress(BigInteger address) throws DebugException {
|
||||
public void goToAddress(final BigInteger address) throws DebugException {
|
||||
Display.getDefault().asyncExec(new Runnable(){
|
||||
public void run()
|
||||
{
|
||||
fRendering.gotoAddress(address);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
protected void bytesAreLittleEndian(boolean areLE)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue