diff options
author | Samantha Chan | 2009-10-25 20:40:14 +0000 |
---|---|---|
committer | Samantha Chan | 2009-10-25 20:40:14 +0000 |
commit | 7b3337b5420cc1597557c727055bc8f6c8b4b247 (patch) | |
tree | 1cee1f745707228fa17c6c29e0072b6430a63b5d | |
parent | 22ea0d5b42326f7c491846d5cd24b056e967c69e (diff) | |
download | eclipse.platform.debug-7b3337b5420cc1597557c727055bc8f6c8b4b247.tar.gz eclipse.platform.debug-7b3337b5420cc1597557c727055bc8f6c8b4b247.tar.xz eclipse.platform.debug-7b3337b5420cc1597557c727055bc8f6c8b4b247.zip |
Bug 262360 - [Memory View] platform renderings do not implement correctly IMemoryRendering#getControl
-rw-r--r-- | org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/memory/provisional/AbstractAsyncTableRendering.java | 3 |
1 files changed, 2 insertions, 1 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 7b68b3fbc..cacf33d08 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 @@ -7,6 +7,7 @@ * * Contributors: * IBM Corporation - initial API and implementation + * Teodor Madan (Freescale) - Bug 292360 - [Memory View] platform renderings do not implement correctly IMemoryRendering#getControl *******************************************************************************/ package org.eclipse.debug.internal.ui.memory.provisional; @@ -981,7 +982,7 @@ public abstract class AbstractAsyncTableRendering extends AbstractBaseTableRende * @see org.eclipse.debug.ui.memory.IMemoryRendering#getControl() */ public Control getControl() { - return fPageBook.getParent(); + return fPageBook; } /* (non-Javadoc) |