Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2016-09-19 11:54:23 +0000
committerAlexander Kurtakov2016-09-19 11:55:56 +0000
commitd473051182b0214716d526ca564db8e7fa1a28cb (patch)
tree3f4d4973a4c3538d85df1e30afce9082f5ddbf76
parent67e18320e2682697b68f564901b6459633fc9938 (diff)
downloadeclipse.platform.swt-d473051182b0214716d526ca564db8e7fa1a28cb.tar.gz
eclipse.platform.swt-d473051182b0214716d526ca564db8e7fa1a28cb.tar.xz
eclipse.platform.swt-d473051182b0214716d526ca564db8e7fa1a28cb.zip
Bug 476644 - Bump min gtk version supported to 2.24
Let SWT warn if trying to run on older than GTK 2.24 version. Change-Id: I1110c94b72b6551abe97e52aae0e28c27a64e211 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-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 84b7f6dfba..68275da81d 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
@@ -445,7 +445,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 = 18;
+ static final int GTK2_MINOR = 24;
static final int GTK2_MICRO = 0;
/* Display Data */

Back to the top