Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2018-08-16 18:19:26 +0000
committerJeff Johnston2018-08-16 20:33:28 +0000
commitfc85e8168ef832ac4cfaeb69946ca8fb59cb7e43 (patch)
tree50a4c9f5c59f835e65bc812dbd47c1d136a5d8fd
parent5109d3180548b60031163f74f9db3d2a2adbd276 (diff)
downloadorg.eclipse.linuxtools-fc85e8168ef832ac4cfaeb69946ca8fb59cb7e43.tar.gz
org.eclipse.linuxtools-fc85e8168ef832ac4cfaeb69946ca8fb59cb7e43.tar.xz
org.eclipse.linuxtools-fc85e8168ef832ac4cfaeb69946ca8fb59cb7e43.zip
Bug 538012 - NoSuchMethodError in AbstractProviderPropertyTab
- in createControls, code uses SelectionListener.widgetSelectedAdapter which only exists as of SWT 3.106.0 - add bundle requirement to MANIFEST.MF Change-Id: I24c45c11d7283fa8086bea538000ed92e24527ef Reviewed-on: https://git.eclipse.org/r/127534 Tested-by: CI Bot Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
-rw-r--r--profiling/org.eclipse.linuxtools.profiling.launch/META-INF/MANIFEST.MF1
1 files changed, 1 insertions, 0 deletions
diff --git a/profiling/org.eclipse.linuxtools.profiling.launch/META-INF/MANIFEST.MF b/profiling/org.eclipse.linuxtools.profiling.launch/META-INF/MANIFEST.MF
index b1ca861512..469d23ffa1 100644
--- a/profiling/org.eclipse.linuxtools.profiling.launch/META-INF/MANIFEST.MF
+++ b/profiling/org.eclipse.linuxtools.profiling.launch/META-INF/MANIFEST.MF
@@ -9,6 +9,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.cdt.core,
org.eclipse.cdt.launch;bundle-version="7.0.0",
org.eclipse.core.filesystem;bundle-version="1.3.100",
+ org.eclipse.swt;bundle-version="3.106.0",
org.eclipse.core.expressions
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.8

Back to the top