summaryrefslogtreecommitdiffstats
path: root/bundles
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2005-10-14 12:10:10 +0000
committerSilenio Quarti <silenio>2005-10-14 12:10:10 +0000
commit257a168d7d24eff096db14008d248b67c174d134 (patch)
treed3e2a2cac62c5d897cb37a1c649193363b76a28a /bundles
parent4e79b4725e13893bbf8a9eed4322650df055c743 (diff)
downloadeclipse.platform.swt-257a168d7d24eff096db14008d248b67c174d134.tar.gz
eclipse.platform.swt-257a168d7d24eff096db14008d248b67c174d134.tar.xz
eclipse.platform.swt-257a168d7d24eff096db14008d248b67c174d134.zip
still support Jaguar
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java
index 765bd7d0cf..7746653510 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java
@@ -20,12 +20,13 @@ public class OS extends Platform {
Library.loadLibrary ("swt-pi");
}
- public static final boolean HIVIEW = true;
+ public static final boolean HIVIEW;
public static final int VERSION;
static {
int [] response = new int [1];
OS.Gestalt (OS.gestaltSystemVersion, response);
VERSION = response [0] & 0xffff;
+ HIVIEW = VERSION >= 0x1030;
}
/** Constants */