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

Bug 149284 - shells not properly initialized when only ssh is installed

This commit is contained in:
Martin Oberhuber 2006-06-30 08:52:11 +00:00
parent dff0b6243c
commit 108fd36c65
2 changed files with 4 additions and 0 deletions

View file

@ -12,6 +12,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.rse.connectorservice.ssh,
org.eclipse.rse.services.ssh,
org.eclipse.rse.subsystems.shells.core,
org.eclipse.rse.shells.ui,
org.eclipse.rse.ui
Eclipse-LazyStart: true
Export-Package: org.eclipse.rse.subsystems.shells.ssh

View file

@ -28,6 +28,9 @@ public class Activator extends AbstractUIPlugin {
*/
public void start(BundleContext context) throws Exception {
super.start(context);
// shells ui needs to be started for proper UI init
org.eclipse.rse.shells.ui.Activator.getDefault();
}
/*