summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
diff options
context:
space:
mode:
authorAnatoly Spektor <aspektor@redhat.com>2013-07-12 14:22:57 -0400
committerArun Thondapu <arunkumar.thondapu@in.ibm.com>2013-07-18 15:23:04 +0530
commit84ada67db50238f5e2d9101d22b8080e28b074d2 (patch)
treea7963ed646999656a0486a8f01b95332b3ee74da /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
parentf44fbcfe05943df863742d52c93eee02ea76cf56 (diff)
downloadeclipse.platform.swt-84ada67db50238f5e2d9101d22b8080e28b074d2.tar.gz
eclipse.platform.swt-84ada67db50238f5e2d9101d22b8080e28b074d2.tar.xz
eclipse.platform.swt-84ada67db50238f5e2d9101d22b8080e28b074d2.zip
Bug 412880 - Dropping Version less than 2.10 in Widget and Tooltip
Signed-off-by: Anatoly Spektor <aspektor@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
index f9666a80ba..d8c48aaf2c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
@@ -332,11 +332,6 @@ void checkOrientation (Widget parent) {
}
}
style = checkBits (style, SWT.LEFT_TO_RIGHT, SWT.RIGHT_TO_LEFT, 0, 0, 0, 0);
- /* Versions of GTK prior to 2.8 do not render RTL text properly */
- if (OS.GTK_VERSION < OS.VERSION (2, 8, 0)) {
- style &= ~SWT.RIGHT_TO_LEFT;
- style |= SWT.LEFT_TO_RIGHT;
- }
}
/**