mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 18:05:33 +02:00
Fix for 148971. Need to activate files.ui plugin to get adapter for files
This commit is contained in:
parent
e601b59cac
commit
a698ade0f7
2 changed files with 5 additions and 1 deletions
|
@ -12,6 +12,7 @@ Require-Bundle: org.eclipse.ui,
|
|||
org.eclipse.rse.connectorservice.ssh,
|
||||
org.eclipse.rse.services.ssh,
|
||||
org.eclipse.rse.subsystems.files.core,
|
||||
org.eclipse.rse.ui
|
||||
org.eclipse.rse.ui,
|
||||
org.eclipse.rse.files.ui
|
||||
Eclipse-LazyStart: true
|
||||
Export-Package: org.eclipse.rse.subsystems.files.ssh
|
||||
|
|
|
@ -28,6 +28,9 @@ public class Activator extends AbstractUIPlugin {
|
|||
*/
|
||||
public void start(BundleContext context) throws Exception {
|
||||
super.start(context);
|
||||
|
||||
// make sure files.ui is activated
|
||||
org.eclipse.rse.files.ui.Activator.getDefault();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue