Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java
index de940a594cd..fb6556dc4c7 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java
@@ -116,15 +116,15 @@ public class StandardTrim {
if (wbw == null) {
// Create one assuming there's no defined perspective
Workbench wb = (Workbench) PlatformUI.getWorkbench();
- wb.createWorkbenchWindow(wb.getDefaultPageInput(), null,
- modelService.getTopLevelWindowFor(toolControl), false);
+ wb.createWorkbenchWindow(wb.getDefaultPageInput(), null, modelService.getTopLevelWindowFor(toolControl),
+ false);
wbw = (WorkbenchWindow) context.get(IWorkbenchWindow.class);
}
if (wbw != null) {
Workbench wb = (Workbench) PlatformUI.getWorkbench();
- wb.createWorkbenchWindow(wb.getDefaultPageInput(), null,
- modelService.getTopLevelWindowFor(toolControl), false);
+ wb.createWorkbenchWindow(wb.getDefaultPageInput(), null, modelService.getTopLevelWindowFor(toolControl),
+ false);
wbw = (WorkbenchWindow) context.get(IWorkbenchWindow.class);
manager = wbw.getStatusLineManager();

Back to the top