diff options
author | Juan Cadavid | 2016-01-13 09:40:58 +0000 |
---|---|---|
committer | Juan Cadavid | 2016-01-13 09:40:58 +0000 |
commit | 26319e3531f80ce399ea3cdd09f4096d55d6efcb (patch) | |
tree | 9875fafe163471125a6dbaf6de919f6e5b4c2997 /extraplugins | |
parent | 7a68b122f2435d1f91f68f8cb7255509c9d9cd24 (diff) | |
download | org.eclipse.papyrus-26319e3531f80ce399ea3cdd09f4096d55d6efcb.tar.gz org.eclipse.papyrus-26319e3531f80ce399ea3cdd09f4096d55d6efcb.tar.xz org.eclipse.papyrus-26319e3531f80ce399ea3cdd09f4096d55d6efcb.zip |
[BPMN] Correct plug-in ID in Activator and bundle.properties
Signed-off-by: Juan Cadavid <juan.cadavid@cea.fr>
Diffstat (limited to 'extraplugins')
2 files changed, 2 insertions, 2 deletions
diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/OSGI-INF/l10n/bundle.properties b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/OSGI-INF/l10n/bundle.properties index fcceed2dba5..af9208bc68e 100644 --- a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/OSGI-INF/l10n/bundle.properties +++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/OSGI-INF/l10n/bundle.properties @@ -1,3 +1,3 @@ -#Properties file for org.eclipse.papyrus.bpmn.diagram.process +#Properties file for org.eclipse.papyrus.bpmn.diagram.collaboration Bundle-Vendor = Eclipse Modeling Project Bundle-Name = BPMN Collaboration diagram editor
\ No newline at end of file diff --git a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/src/org/eclipse/papyrus/bpmn/diagram/collaboration/Activator.java b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/src/org/eclipse/papyrus/bpmn/diagram/collaboration/Activator.java index be077091754..985b77899c6 100644 --- a/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/src/org/eclipse/papyrus/bpmn/diagram/collaboration/Activator.java +++ b/extraplugins/bpmn/org.eclipse.papyrus.bpmn.diagram.collaboration/src/org/eclipse/papyrus/bpmn/diagram/collaboration/Activator.java @@ -20,7 +20,7 @@ import org.osgi.framework.BundleContext; public class Activator extends AbstractUIPlugin { // The plug-in ID - public static final String PLUGIN_ID = "org.eclipse.papyrus.bpmn.diagram.process"; //$NON-NLS-1$ + public static final String PLUGIN_ID = "org.eclipse.papyrus.bpmn.diagram.collaboration"; //$NON-NLS-1$ // The shared instance private static Activator plugin; |