mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +02:00
[205820] create the temp files project (if not there) when files.ui is loaded
This commit is contained in:
parent
139e02ecdf
commit
839cf0e907
1 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Martin Oberhuber (Wind River) - [180519][api] declaratively register adapter factories
|
* 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;
|
package org.eclipse.rse.internal.files.ui;
|
||||||
|
@ -54,6 +55,11 @@ public class Activator extends AbstractUIPlugin
|
||||||
public void start(BundleContext context) throws Exception {
|
public void start(BundleContext context) throws Exception {
|
||||||
super.start(context);
|
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
|
// refresh the remote edit project at plugin startup, to ensure
|
||||||
// it's never closed
|
// it's never closed
|
||||||
SystemRemoteEditManager.getInstance().refreshRemoteEditProject();
|
SystemRemoteEditManager.getInstance().refreshRemoteEditProject();
|
||||||
|
|
Loading…
Add table
Reference in a new issue