From e6aa5ace75b7d76f999c03a1263487de3b558d2d Mon Sep 17 00:00:00 2001 From: Alexander Kurtakov Date: Fri, 12 Jul 2013 16:13:11 +0300 Subject: 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. --- .../Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- cgit