diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2010-07-10 19:34:30 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2010-07-10 19:34:30 +0000 |
commit | 284dad3f6de67888b34ca18026e068770214b2ea (patch) | |
tree | f0fbc6214a30b0af9a0fd70ecd7a22617d889975 /java/eclipse/files/post-patch-plugins-org.eclipse.swt-Eclipse_SWT_Mozilla-gtk-org-eclipse-swt-browser-MozillaDelegate.java | |
parent | - Update to 0.2.3 (diff) |
. Update to 3.5.2.
Diffstat (limited to 'java/eclipse/files/post-patch-plugins-org.eclipse.swt-Eclipse_SWT_Mozilla-gtk-org-eclipse-swt-browser-MozillaDelegate.java')
-rw-r--r-- | java/eclipse/files/post-patch-plugins-org.eclipse.swt-Eclipse_SWT_Mozilla-gtk-org-eclipse-swt-browser-MozillaDelegate.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/java/eclipse/files/post-patch-plugins-org.eclipse.swt-Eclipse_SWT_Mozilla-gtk-org-eclipse-swt-browser-MozillaDelegate.java b/java/eclipse/files/post-patch-plugins-org.eclipse.swt-Eclipse_SWT_Mozilla-gtk-org-eclipse-swt-browser-MozillaDelegate.java deleted file mode 100644 index 56d4b133a2b2..000000000000 --- a/java/eclipse/files/post-patch-plugins-org.eclipse.swt-Eclipse_SWT_Mozilla-gtk-org-eclipse-swt-browser-MozillaDelegate.java +++ /dev/null @@ -1,20 +0,0 @@ ---- gtk/org/eclipse/swt/browser/MozillaDelegate.java.orig 2008-08-02 21:58:22.782311909 -0400 -+++ gtk/org/eclipse/swt/browser/MozillaDelegate.java 2008-08-02 22:00:13.312988015 -0400 -@@ -26,14 +26,16 @@ - static final int STOP_PROPOGATE = 1; - - static boolean IsLinux; -+ static boolean IsFreeBSD; - static { - String osName = System.getProperty ("os.name").toLowerCase (); //$NON-NLS-1$ - IsLinux = osName.startsWith ("linux"); //$NON-NLS-1$ -+ IsFreeBSD = osName.startsWith ("freebsd"); //$NON-NLS-1$ - } - - MozillaDelegate (Browser browser) { - super (); -- if (!IsLinux) { -+ if (!IsLinux && !IsFreeBSD) { - browser.dispose (); - SWT.error (SWT.ERROR_NO_HANDLES, null, " [Unsupported platform]"); //$NON-NLS-1$ - } |