1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

[205820] create the temp files project (if not there) when files.ui is loaded

This commit is contained in:
David McKnight 2007-10-12 21:02:32 +00:00
parent 139e02ecdf
commit 839cf0e907

View file

@ -12,6 +12,7 @@
*
* Contributors:
* Martin Oberhuber (Wind River) - [180519][api] declaratively register adapter factories
* David McKnight (IBM) - [205820] create the temp files project (if not there) when files.ui is loaded
********************************************************************************/
package org.eclipse.rse.internal.files.ui;
@ -54,6 +55,11 @@ public class Activator extends AbstractUIPlugin
public void start(BundleContext context) throws Exception {
super.start(context);
// create the temp files project if it doesn't exist
// fix for bug 205820
SystemRemoteEditManager.getInstance().getRemoteEditProject();
// refresh the remote edit project at plugin startup, to ensure
// it's never closed
SystemRemoteEditManager.getInstance().refreshRemoteEditProject();