Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2010-02-26 02:40:31 +0000
committerPascal Rapicault2010-02-26 02:40:31 +0000
commit48169e6c57d3154f0bca66b3e11fd268a6c2ad3e (patch)
tree7b590575ce17ef71f3844687491acae7fe4605e5 /bundles/org.eclipse.equinox.launcher
parent2efa032c6a0899dc8084839de9e9e1f8f7547482 (diff)
downloadrt.equinox.framework-48169e6c57d3154f0bca66b3e11fd268a6c2ad3e.tar.gz
rt.equinox.framework-48169e6c57d3154f0bca66b3e11fd268a6c2ad3e.tar.xz
rt.equinox.framework-48169e6c57d3154f0bca66b3e11fd268a6c2ad3e.zip
Bug 303907 - Update the default WS on Mac to be Cocoa
Diffstat (limited to 'bundles/org.eclipse.equinox.launcher')
-rw-r--r--bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
index 14faff12d..13a084af6 100644
--- a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
+++ b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/Main.java
@@ -306,7 +306,7 @@ public class Main {
if (osName.equals(Constants.OS_LINUX))
return Constants.WS_GTK;
if (osName.equals(Constants.OS_MACOSX))
- return Constants.WS_CARBON;
+ return Constants.WS_COCOA;
if (osName.equals(Constants.OS_HPUX))
return Constants.WS_MOTIF;
if (osName.equals(Constants.OS_AIX))

Back to the top