summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2003-09-24 20:08:30 +0000
committerFelipe Heidrich <fheidric>2003-09-24 20:08:30 +0000
commit8d2bd8d7d7cb0014d46059a4dd6ad41a4a7bc280 (patch)
tree4931ee025d0d8be456a7e10acd61d3631866d06a
parentc7c787478a65952dfb51a49c2c0ef8bc22ff2c91 (diff)
downloadeclipse.platform.swt-8d2bd8d7d7cb0014d46059a4dd6ad41a4a7bc280.tar.gz
eclipse.platform.swt-8d2bd8d7d7cb0014d46059a4dd6ad41a4a7bc280.tar.xz
eclipse.platform.swt-8d2bd8d7d7cb0014d46059a4dd6ad41a4a7bc280.zip
*** empty log message ***v2135h
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
index 6d18e1cea3..2f1b041938 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
@@ -1591,7 +1591,7 @@ public StyledText(Composite parent, int style) {
super.setForeground(getForeground());
super.setBackground(getBackground());
Display display = getDisplay();
- isMirrored = (getStyle() & SWT.MIRRORED) != 0;
+ isMirrored = (super.getStyle() & SWT.MIRRORED) != 0;
isBidi = StyledTextBidi.isBidiPlatform() || isMirrored;
if ((style & SWT.READ_ONLY) != 0) {
setEditable(false);