1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

Bug 100261: Memory veiw: Renderings content disappears when click on Vairable/Module... view.

This commit is contained in:
Mikhail Khodjaiants 2005-06-17 19:30:56 +00:00
parent 19721c7ad7
commit b53dbe706e
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2005-06-17 Mikhail Khodjaiants
Bug 100261: Memory veiw: Renderings content disappears when click on Vairable/Module... view.
* CDebugElement.java
2005-06-16 Mikhail Khodjaiants
Bug 100471: Signed/Unsigned Integer renderings show '?' for valid memory blocks.
* CMemoryBlockExtension.java

View file

@ -31,6 +31,7 @@ import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.IDebugElement;
import org.eclipse.debug.core.model.IDebugTarget;
import org.eclipse.debug.core.model.IMemoryBlockRetrieval;
/**
* The super class of all C/C++ debug model elements.
@ -301,6 +302,9 @@ abstract public class CDebugElement extends PlatformObject implements ICDebugEle
return getCDISession();
if ( adapter.equals( ICDebugTarget.class ) )
return getDebugTarget();
// See bug #100261
if ( adapter.equals( IMemoryBlockRetrieval.class ) )
return getDebugTarget().getAdapter( adapter );
return super.getAdapter( adapter );
}