1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Fix for bugs 129152 (Keyboard shortcuts are gone in CDT CVS HEAD) and 128844 (No prompt for Debug perspective on suspend).

This commit is contained in:
Mikhail Khodjaiants 2006-02-24 23:32:09 +00:00
parent c63f679228
commit 3502da3b30
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2006-02-24 Mikhail Khodjaiants
Fix for bugs 129152 (Keyboard shortcuts are gone in CDT CVS HEAD)
and 128844 (No prompt for Debug perspective on suspend).
* CDebugTarget.java
2006-02-20 Mikhail Khodjaiants
Fire the resume event instead of the change event when a non-current thread is resumed.
* CThread.java

View file

@ -307,6 +307,8 @@ abstract public class CDebugElement extends PlatformObject implements ICDebugEle
// See bug #100261
if ( adapter.equals( IMemoryBlockRetrieval.class ) )
return getDebugTarget().getAdapter( adapter );
if ( adapter.equals( ILaunch.class ) )
return getDebugTarget().getLaunch();
return super.getAdapter( adapter );
}