summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Browser
diff options
context:
space:
mode:
authorGrant Gayed <Grant_Gayed@ca.ibm.com>2011-10-03 14:57:16 -0400
committerGrant Gayed <Grant_Gayed@ca.ibm.com>2011-10-03 14:57:16 -0400
commit01b9002aa980befd0c51529f45e05b950166ae2b (patch)
tree0c500578bce358c96871d359a2f1f0fb21065aba /bundles/org.eclipse.swt/Eclipse SWT Browser
parentb1df683a63ba731de0add93dda58ad190689d7cb (diff)
downloadeclipse.platform.swt-01b9002aa980befd0c51529f45e05b950166ae2b.tar.gz
eclipse.platform.swt-01b9002aa980befd0c51529f45e05b950166ae2b.tar.xz
eclipse.platform.swt-01b9002aa980befd0c51529f45e05b950166ae2b.zip
Bug 350098 (part 1) - [hovering] "Enrich on click" is not working on
Indigo
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Browser')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java
index 37a332ac53..12e627641a 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java
@@ -17,7 +17,7 @@ class BrowserFactory {
static boolean mozillaLibsLoaded;
WebBrowser createWebBrowser (int style) {
- boolean webkitInstalled = WebKit.isInstalled ();
+ boolean webkitInstalled = WebKit.IsInstalled ();
if ((style & SWT.MOZILLA) != 0 || (!webkitInstalled && (style & SWT.WEBKIT) == 0)) {
mozillaLibsLoaded = true;
return new Mozilla ();