summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov <akurtako@redhat.com>2013-07-12 16:13:11 +0300
committerAlexander Kurtakov <akurtako@redhat.com>2013-07-12 16:13:11 +0300
commite6aa5ace75b7d76f999c03a1263487de3b558d2d (patch)
treed37c448bc2d88d6ba3d0b739250dce77e1280b33
parent5227d3ae5c51c4fe0a22139287c3f9f929e6ae97 (diff)
downloadeclipse.platform.swt-e6aa5ace75b7d76f999c03a1263487de3b558d2d.tar.gz
eclipse.platform.swt-e6aa5ace75b7d76f999c03a1263487de3b558d2d.tar.xz
eclipse.platform.swt-e6aa5ace75b7d76f999c03a1263487de3b558d2d.zip
GTK 2.10.0 is the minimum required version now.
This has been technically true in Kepler too because SWT is compiled on RHEL 5 which ships with GTK 2.10 so whether it works on 2.6 is practically not tested. Now the version check is officially bumped to 2.10 and code workarounding pre 2.10 versions will be dropped.
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
index 8b8348a6f8..4bddd5ba20 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
@@ -432,7 +432,7 @@ public class Display extends Device {
static final int GTK3_MINOR = 0;
static final int GTK3_MICRO = 0;
static final int GTK2_MAJOR = 2;
- static final int GTK2_MINOR = 6;
+ static final int GTK2_MINOR = 10;
static final int GTK2_MICRO = 0;
/* Display Data */