Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2012-11-07 16:12:53 +0000
committerSilenio Quarti2012-11-07 16:12:53 +0000
commita114b8571e841850b0eb4843f8a8f4994a7fed9c (patch)
treea51bb1cf6174b10b0194c82df34873f3661c92fb /bundles/org.eclipse.swt/Eclipse SWT PI
parent87e58488da30e8b2e25a699114ff6b6d32d823a7 (diff)
downloadeclipse.platform.swt-a114b8571e841850b0eb4843f8a8f4994a7fed9c.tar.gz
eclipse.platform.swt-a114b8571e841850b0eb4843f8a8f4994a7fed9c.tar.xz
eclipse.platform.swt-a114b8571e841850b0eb4843f8a8f4994a7fed9c.zip
environment vars cannot have dots
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
index 8514ab6ca8..bed45d6ed3 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
@@ -20,7 +20,7 @@ import org.eclipse.swt.internal.*;
public class OS extends C {
static {
boolean loaded = false;
- String prop = "org.eclipse.swt.gtk3";
+ String prop = "SWT_GTK3";
if (System.getProperty(prop) != null || OS.getenv(ascii(prop)) != 0) {
try {
Library.loadLibrary("swt-pi3");

Back to the top