1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-27 19:05:38 +02:00

Fixed suspend trigger adapter registration.

This commit is contained in:
Pawel Piech 2009-12-30 00:18:45 +00:00
parent 5c7ce7db47
commit cc24890314
2 changed files with 2 additions and 1 deletions

View file

@ -24,6 +24,7 @@
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.IModelProxyFactory"/>
<adapter type="org.eclipse.debug.ui.contexts.ISuspendTrigger"/>
</factory>
</extension>

View file

@ -59,7 +59,7 @@ public class PDAAdapterFactory implements IAdapterFactory
@SuppressWarnings("unchecked") // IAdapterFactory is Java 1.3
public Class[] getAdapterList() {
return new Class[] { IElementContentProvider.class, IModelProxyFactory.class, IColumnPresentationFactory.class };
return new Class[] { IElementContentProvider.class, IModelProxyFactory.class, ISuspendTrigger.class };
}
}