Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Maggi2016-09-22 08:29:16 +0000
committerGerrit Code Review @ Eclipse.org2016-09-22 10:49:37 +0000
commit05f806a5fcc8912621f110963bad8a767d4c5d28 (patch)
tree29f7f2adbe2165a6e1213230774d630242bcb868 /plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite
parent0111103177c9aae115b35510be542268d544b17b (diff)
downloadorg.eclipse.papyrus-05f806a5fcc8912621f110963bad8a767d4c5d28.tar.gz
org.eclipse.papyrus-05f806a5fcc8912621f110963bad8a767d4c5d28.tar.xz
org.eclipse.papyrus-05f806a5fcc8912621f110963bad8a767d4c5d28.zip
Bug 501962 - [Composite] Wrong hyperlink contribution
- fix typo - export hyperlink package at runtime Change-Id: I26a9d8a9bf1a89c50221ebb5f601c0da8d694cb6 Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
Diffstat (limited to 'plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite')
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/META-INF/MANIFEST.MF1
-rw-r--r--plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/plugin.xml4
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/META-INF/MANIFEST.MF b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/META-INF/MANIFEST.MF
index 08d1957baed..9ec08f2eaaf 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/META-INF/MANIFEST.MF
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/META-INF/MANIFEST.MF
@@ -8,6 +8,7 @@ Export-Package: org.eclipse.papyrus.uml.diagram.composite,
org.eclipse.papyrus.uml.diagram.composite.custom.figures,
org.eclipse.papyrus.uml.diagram.composite.custom.helper,
org.eclipse.papyrus.uml.diagram.composite.custom.helper.advice,
+ org.eclipse.papyrus.uml.diagram.composite.custom.hyperlink,
org.eclipse.papyrus.uml.diagram.composite.custom.locators,
org.eclipse.papyrus.uml.diagram.composite.custom.log,
org.eclipse.papyrus.uml.diagram.composite.custom.messages,
diff --git a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/plugin.xml b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/plugin.xml
index 6b79155194a..5ca9e4f5ef9 100644
--- a/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/plugin.xml
+++ b/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite/plugin.xml
@@ -1548,13 +1548,13 @@
label="Inner composite structure diagram hyperlinks">
</contributor>
<contributor
- contributor="org.eclipse.papyrus.uml.diagram.comosite.custom.hyperlink.NestingPackageHyperlinkContributor"
+ contributor="org.eclipse.papyrus.uml.diagram.composite.custom.hyperlink.NestingPackageHyperlinkContributor"
description="Creates hyperlinks referencing composite structure diagrams that are directly owned by the nesting package of the selected package"
id="org.eclipse.papyrus.uml.diagram.composite.hyperlink.NestingPackageHyperlinkContributor"
label="Nesting package composite structure diagram hyperlinks">
</contributor>
<contributor
- contributor="org.eclipse.papyrus.uml.diagram.comosite.custom.hyperlink.NestedPackageHyperlinkContributor"
+ contributor="org.eclipse.papyrus.uml.diagram.composite.custom.hyperlink.NestedPackageHyperlinkContributor"
description="Creates hyperlinks referencing composite structure diagrams that are directly owned by nested packages of the selected package"
id="org.eclipse.papyrus.uml.diagram.composite.hyperlink.NestedPackageHyperlinkContributor"
label="Nested package composite structure diagram hyperlinks">

Back to the top