mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-12 18:55:38 +02:00
Fixed suspend trigger adapter registration.
This commit is contained in:
parent
5c7ce7db47
commit
cc24890314
2 changed files with 2 additions and 1 deletions
|
@ -24,6 +24,7 @@
|
||||||
adaptableType="org.eclipse.cdt.examples.dsf.pda.launch.PDALaunch">
|
adaptableType="org.eclipse.cdt.examples.dsf.pda.launch.PDALaunch">
|
||||||
<adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider"/>
|
<adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider"/>
|
||||||
<adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory"/>
|
<adapter type="org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory"/>
|
||||||
|
<adapter type="org.eclipse.debug.ui.contexts.ISuspendTrigger"/>
|
||||||
</factory>
|
</factory>
|
||||||
</extension>
|
</extension>
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ public class PDAAdapterFactory implements IAdapterFactory
|
||||||
|
|
||||||
@SuppressWarnings("unchecked") // IAdapterFactory is Java 1.3
|
@SuppressWarnings("unchecked") // IAdapterFactory is Java 1.3
|
||||||
public Class[] getAdapterList() {
|
public Class[] getAdapterList() {
|
||||||
return new Class[] { IElementContentProvider.class, IModelProxyFactory.class, IColumnPresentationFactory.class };
|
return new Class[] { IElementContentProvider.class, IModelProxyFactory.class, ISuspendTrigger.class };
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue