Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Thondapu2014-01-31 19:55:10 +0000
committerArun Thondapu2014-02-05 17:56:29 +0000
commitd46bf347148dc41c90714be76a87f04d7f315053 (patch)
tree46ad98442eb9c667a176d89002970d0bfe8bdada
parent92af317c98e88811262a22ef7b0ae219d3686795 (diff)
downloadeclipse.platform.swt-d46bf347148dc41c90714be76a87f04d7f315053.tar.gz
eclipse.platform.swt-d46bf347148dc41c90714be76a87f04d7f315053.tar.xz
eclipse.platform.swt-d46bf347148dc41c90714be76a87f04d7f315053.zip
Bug 424657 - Luna M4 does not render on Kubuntu 13.10
Fix whitespaces vs. tabs for indentation Change-Id: I846f1f6258e1a9d9b8d735596b4bab6e8bc75bf3 Signed-off-by: Arun Thondapu <arunkumar.thondapu@in.ibm.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.h b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.h
index 410b8c89b1..f427eaa8c2 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.h
+++ b/bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/library/webkitgtk.h
@@ -31,9 +31,9 @@
handle = dlopen("libwebkitgtk-3.0.so.0", LOAD_FLAGS); /* webkitgtk >= 3.x lib */ \
} else { \
handle = dlopen("libwebkit-1.0.so.2", LOAD_FLAGS); /* webkitgtk 1.2.x lib */ \
- if (!handle) { \
- handle = dlopen("libwebkitgtk-1.0.so.0", LOAD_FLAGS); /* webkitgtk >= 1.4.x lib */ \
- } \
+ if (!handle) { \
+ handle = dlopen("libwebkitgtk-1.0.so.0", LOAD_FLAGS); /* webkitgtk >= 1.4.x lib */ \
+ } \
} \
if (handle) { \
var = dlsym(handle, #name); \

Back to the top