Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2018-03-18 17:15:25 +0000
committerMichael Keppler2018-03-18 17:15:25 +0000
commit6b0265d61fa537ee57ca6a8a75141f5bf73115dc (patch)
tree9dc01096a829f1a02fa50e41f8bb08ddc3760124
parent4b22253637468e09fb840a0f0530b9c087236b30 (diff)
downloadeclipse.platform.debug-6b0265d61fa537ee57ca6a8a75141f5bf73115dc.tar.gz
eclipse.platform.debug-6b0265d61fa537ee57ca6a8a75141f5bf73115dc.tar.xz
eclipse.platform.debug-6b0265d61fa537ee57ca6a8a75141f5bf73115dc.zip
Bug 532578 - Missing title when exporting launch configurations
When import or export wizards are used outside the general import/export wizard, then they need to be initialized. Change-Id: I698948437e8e2212a94cd43297c5d5281c80e23e Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Bug: 532578
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ExportLaunchConfigurationAction.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ExportLaunchConfigurationAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ExportLaunchConfigurationAction.java
index 697473ee0..c19f15aa3 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ExportLaunchConfigurationAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ExportLaunchConfigurationAction.java
@@ -42,6 +42,7 @@ public class ExportLaunchConfigurationAction extends AbstractLaunchConfiguration
} else {
wizard = new ExportLaunchConfigurationsWizard(selection);
}
+ wizard.init(DebugUIPlugin.getDefault().getWorkbench(), null);
WizardDialog dialog = new WizardDialog(DebugUIPlugin.getShell(), wizard);
dialog.open();
}

Back to the top