mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
"CDebugTarget" should provide an adapter for "ICDebugTarget".
This commit is contained in:
parent
c939dec941
commit
181779924b
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-06-11 Mikhail Khodjaiants
|
||||
"CDebugTarget" should provide an adapter for "ICDebugTarget".
|
||||
* CDebugTarget.java
|
||||
|
||||
2004-06-09 Mikhail Khodjaiants
|
||||
Changed the synchronization scope.
|
||||
* CSharedLibraryManager.java
|
||||
|
|
|
@ -966,6 +966,8 @@ public class CDebugTarget extends CDebugElement
|
|||
{
|
||||
if ( adapter.equals( IDebugTarget.class ) )
|
||||
return this;
|
||||
if ( adapter.equals( ICDebugTarget.class ) )
|
||||
return this;
|
||||
if ( adapter.equals( CDebugTarget.class ) )
|
||||
return this;
|
||||
if ( adapter.equals( ICDITarget.class ) )
|
||||
|
|
Loading…
Add table
Reference in a new issue