Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2010-12-02 18:34:44 +0000
committerPawel Piech2010-12-02 18:34:44 +0000
commit7549c7a81d6e70118ec63598ad218c08dfefac08 (patch)
tree9bde9d1fb0c6c72f1af2a1f695fa4a1ddc3abdcf /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java
parentaf9751e6232940dc5de1046294a166b4a77a2cd9 (diff)
downloadeclipse.platform.debug-7549c7a81d6e70118ec63598ad218c08dfefac08.tar.gz
eclipse.platform.debug-7549c7a81d6e70118ec63598ad218c08dfefac08.tar.xz
eclipse.platform.debug-7549c7a81d6e70118ec63598ad218c08dfefac08.zip
Bug 327263 - Allow multiple debug views and multiple debug context providers
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java
index 781c36376..cecec5685 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java
@@ -288,8 +288,8 @@ public abstract class AbstractAsyncTableRendering extends AbstractBaseTableRende
private class RenderingGoToAddressAction extends GoToAddressAction
{
- public RenderingGoToAddressAction(AbstractBaseTableRendering rendering) {
- super(rendering);
+ public RenderingGoToAddressAction(IMemoryRenderingContainer container, AbstractBaseTableRendering rendering) {
+ super(container, rendering);
}
public void run() {
@@ -2038,7 +2038,7 @@ public abstract class AbstractAsyncTableRendering extends AbstractBaseTableRende
protected void createActions() {
fCopyToClipboardAction = new AsyncCopyTableRenderingAction(this, fTableViewer);
- fGoToAddressAction = new RenderingGoToAddressAction(this);
+ fGoToAddressAction = new RenderingGoToAddressAction(getMemoryRenderingContainer(), this);
fResetMemoryBlockAction = new ResetToBaseAddressAction(this);
fPrintViewTabAction = new AsyncPrintTableRenderingAction(this, fTableViewer);

Back to the top