Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2009-04-08 22:30:07 +0000
committerChris Goldthorpe2009-04-08 22:30:07 +0000
commit0a6a9a4369ece2622ff01bce01b64a74f3be45a7 (patch)
tree2fa3d5eb2d12601245abcfbc4021a04a6d77bc9e /org.eclipse.help.ui
parent75f44b4d451dd18624bae43adc9e9792d8de7c87 (diff)
downloadeclipse.platform.ua-0a6a9a4369ece2622ff01bce01b64a74f3be45a7.tar.gz
eclipse.platform.ua-0a6a9a4369ece2622ff01bce01b64a74f3be45a7.tar.xz
eclipse.platform.ua-0a6a9a4369ece2622ff01bce01b64a74f3be45a7.zip
Bug 187352 – [Browser] SWT broswer should be enabled on Mac
Diffstat (limited to 'org.eclipse.help.ui')
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java
index 98a5143ef..db7c2c227 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -61,7 +61,8 @@ public class EmbeddedBrowserFactory implements IBrowserFactory {
*/
private boolean test() {
if (!Constants.OS_WIN32.equalsIgnoreCase(Platform.getOS())
- && !Constants.OS_LINUX.equalsIgnoreCase(Platform.getOS())) {
+ && !Constants.OS_LINUX.equalsIgnoreCase(Platform.getOS())
+ && !Constants.OS_MACOSX.equalsIgnoreCase(Platform.getOS())) {
return false;
}
if (!tested) {

Back to the top