Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2018-09-18 11:53:00 +0000
committerPatrick Tessier2018-10-19 07:39:40 +0000
commit94e017428e887c22c9a3ff100cbb5dbc61cd50ad (patch)
tree9ba25ff100522f587f81f9dba15f53a8a213b259 /plugins/toolsmiths
parent353489b4cc8f511882f97c38f98772ddd710df53 (diff)
downloadorg.eclipse.papyrus-94e017428e887c22c9a3ff100cbb5dbc61cd50ad.tar.gz
org.eclipse.papyrus-94e017428e887c22c9a3ff100cbb5dbc61cd50ad.tar.xz
org.eclipse.papyrus-94e017428e887c22c9a3ff100cbb5dbc61cd50ad.zip
Bug 536486 - [Sequence Diagram] Duration/time constraint & Duration/time
observation and general ordering https://bugs.eclipse.org/bugs/show_bug.cgi?id=536486 - Manage Duration/Time constraint, Duration/Time observation and GeneralOrdering Change-Id: Ice6a31e9b4bb1e757378494a62a2714d775f47dd Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@cea.fr>
Diffstat (limited to 'plugins/toolsmiths')
-rw-r--r--plugins/toolsmiths/org.eclipse.papyrus.gmf.figureview/src/org/eclipse/papyrus/gmf/figureview/view/FigureHierarchyView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/toolsmiths/org.eclipse.papyrus.gmf.figureview/src/org/eclipse/papyrus/gmf/figureview/view/FigureHierarchyView.java b/plugins/toolsmiths/org.eclipse.papyrus.gmf.figureview/src/org/eclipse/papyrus/gmf/figureview/view/FigureHierarchyView.java
index 41cbc6e0bdf..df8dd843427 100644
--- a/plugins/toolsmiths/org.eclipse.papyrus.gmf.figureview/src/org/eclipse/papyrus/gmf/figureview/view/FigureHierarchyView.java
+++ b/plugins/toolsmiths/org.eclipse.papyrus.gmf.figureview/src/org/eclipse/papyrus/gmf/figureview/view/FigureHierarchyView.java
@@ -97,7 +97,7 @@ public class FigureHierarchyView extends ViewPart {
Object selectedobject = ((IStructuredSelection) selection).getFirstElement();
if (selectedobject instanceof GraphicalEditPart) {
GraphicalEditPart graphicalEP = ((GraphicalEditPart) selectedobject);
- IFigure figure = graphicalEP.getContentPane();
+ IFigure figure = graphicalEP.getFigure();
if (viewer != null) {
viewer.setInput(new Object[] { figure });

Back to the top