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

[239908] Need to set the connection in compile manager for Work with Compile Commands Action

This commit is contained in:
Kevin Doyle 2008-07-08 00:42:59 +00:00
parent ce305463e7
commit 2a0eb8e901

View file

@ -12,6 +12,7 @@
* API to the user actions plugin
* Xuan Chen (IBM) - [225617] [useraction][api] Remove Team view support inside user action.
* Kevin Doyle (IBM) - [222828] Icons for some Actions Missing
* Kevin Doyle (IBM) - [239908] Need to set the connection in compile manager for Work with Compile Commands Action
*******************************************************************************/
package org.eclipse.rse.internal.useractions.api.ui.compile;
@ -164,6 +165,10 @@ public class SystemWorkWithCompileCommandsAction extends SystemBaseDialogAction
currProfiles = compileManager.getAllCompileProfiles();
}
if (subsystem != null) {
compileManager.setSystemConnection(subsystem.getHost());
}
caseSensitive = subsystemFactory.isCaseSensitive();
SystemWorkWithCompileCommandsDialog dlg = new SystemWorkWithCompileCommandsDialog(shell, compileManager, currProfile);