Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2013-01-31 13:52:13 +0000
committercletavernie2013-01-31 13:52:13 +0000
commitbdacbe98ac748d6e5ae90df0b2e53895487e7670 (patch)
treec4369bbf8fe3a87598d5f6b5393f7d3db4ec4cf4 /plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.properties/src/org/eclipse/papyrus
parent72046fe397d21186d35240974ceada59f3b23068 (diff)
downloadorg.eclipse.papyrus-bdacbe98ac748d6e5ae90df0b2e53895487e7670.tar.gz
org.eclipse.papyrus-bdacbe98ac748d6e5ae90df0b2e53895487e7670.tar.xz
org.eclipse.papyrus-bdacbe98ac748d6e5ae90df0b2e53895487e7670.zip
370797: [Theme] Papyrus should provide a support for CSS files on its diagrams
https://bugs.eclipse.org/bugs/show_bug.cgi?id=370797 Fix the reset style handler
Diffstat (limited to 'plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.properties/src/org/eclipse/papyrus')
-rw-r--r--plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.properties/src/org/eclipse/papyrus/infra/gmfdiag/css/properties/widgets/ResetStyleWidget.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.properties/src/org/eclipse/papyrus/infra/gmfdiag/css/properties/widgets/ResetStyleWidget.java b/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.properties/src/org/eclipse/papyrus/infra/gmfdiag/css/properties/widgets/ResetStyleWidget.java
index ab2618afde8..d514aa3b5d6 100644
--- a/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.properties/src/org/eclipse/papyrus/infra/gmfdiag/css/properties/widgets/ResetStyleWidget.java
+++ b/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.properties/src/org/eclipse/papyrus/infra/gmfdiag/css/properties/widgets/ResetStyleWidget.java
@@ -42,6 +42,7 @@ public class ResetStyleWidget implements SelectionListener {
ResetStyleHandler handler = new ResetStyleHandler();
try {
+ //FIXME: The ExecutionEvent needs the EclipseContext
handler.execute(new ExecutionEvent(null, new HashMap<String, String>(), event, null));
} catch (ExecutionException ex) {
Activator.log.error(ex);

Back to the top