Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamantha Chan2006-04-10 20:35:10 +0000
committerSamantha Chan2006-04-10 20:35:10 +0000
commitc74443faee0baf5b3a5625993a68e811cb0df5fb (patch)
tree0105476778005b34ef1887e86881ba04429364de /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java
parentde23e9a535af9c701926cd1f161f98795e4e2458 (diff)
downloadeclipse.platform.debug-c74443faee0baf5b3a5625993a68e811cb0df5fb.tar.gz
eclipse.platform.debug-c74443faee0baf5b3a5625993a68e811cb0df5fb.tar.xz
eclipse.platform.debug-c74443faee0baf5b3a5625993a68e811cb0df5fb.zip
Bug 135897 - [Memory View] All tab labels show address if creating more than one rendering at the same time
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, 4 insertions, 2 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 c5a97d8fd..2f6bf7b9f 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
@@ -2197,9 +2197,11 @@ public abstract class AbstractAsyncTableRendering extends AbstractBaseTableRende
*/
public void becomesHidden() {
// creates new object for storing potential changes in sync properties
- fPendingSyncProperties = new PendingPropertyChanges();
+ fPendingSyncProperties = new PendingPropertyChanges();
super.becomesHidden();
- updateRenderingLabel(false);
+
+ if (getMemoryBlock() instanceof IMemoryBlockExtension)
+ updateRenderingLabel(false);
}
/* (non-Javadoc)

Back to the top