mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +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
|
2004-06-09 Mikhail Khodjaiants
|
||||||
Changed the synchronization scope.
|
Changed the synchronization scope.
|
||||||
* CSharedLibraryManager.java
|
* CSharedLibraryManager.java
|
||||||
|
|
|
@ -966,6 +966,8 @@ public class CDebugTarget extends CDebugElement
|
||||||
{
|
{
|
||||||
if ( adapter.equals( IDebugTarget.class ) )
|
if ( adapter.equals( IDebugTarget.class ) )
|
||||||
return this;
|
return this;
|
||||||
|
if ( adapter.equals( ICDebugTarget.class ) )
|
||||||
|
return this;
|
||||||
if ( adapter.equals( CDebugTarget.class ) )
|
if ( adapter.equals( CDebugTarget.class ) )
|
||||||
return this;
|
return this;
|
||||||
if ( adapter.equals( ICDITarget.class ) )
|
if ( adapter.equals( ICDITarget.class ) )
|
||||||
|
|
Loading…
Add table
Reference in a new issue