From: Bruno Sinou Date: Fri, 22 Mar 2013 14:05:57 +0000 (+0000) Subject: Remove hard coded plugin ID X-Git-Tag: argeo-slc-2.1.7~383 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=7282701f78199b4c94a1d64bbbd73e490461c8a4;p=gpl%2Fargeo-slc.git Remove hard coded plugin ID git-svn-id: https://svn.argeo.org/slc/trunk@6194 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java b/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java index 4f0be36eb..257029f3b 100644 --- a/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java +++ b/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java @@ -15,6 +15,7 @@ */ package org.argeo.slc.client.ui; +import org.argeo.security.ui.SecurityUiPlugin; import org.eclipse.ui.IFolderLayout; import org.eclipse.ui.IPageLayout; import org.eclipse.ui.IPerspectiveFactory; @@ -29,14 +30,14 @@ public class SlcExecutionPerspective implements IPerspectiveFactory { IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, 0.3f, editorArea); - left.addView("org.argeo.slc.client.ui.jcrExecutionModulesView"); - left.addView("org.argeo.slc.client.ui.jcrResultListView"); + left.addView(ClientUiPlugin.ID + ".jcrExecutionModulesView"); + left.addView(ClientUiPlugin.ID + ".jcrResultListView"); // Sleak view for SWT resource debugging - //left.addView("org.eclipse.swt.tools.views.SleakView"); + // left.addView("org.eclipse.swt.tools.views.SleakView"); IFolderLayout bottom = layout.createFolder("bottom", IPageLayout.BOTTOM, 0.65f, editorArea); - bottom.addView("org.argeo.security.ui.logView"); - bottom.addView("org.argeo.slc.client.ui.jcrProcessListView"); + bottom.addView(SecurityUiPlugin.PLUGIN_ID + ".logView"); + bottom.addView(ClientUiPlugin.ID + ".jcrProcessListView"); } }