summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2010-12-23 19:18:09 +0000
committerFelipe Heidrich <fheidric>2010-12-23 19:18:09 +0000
commit7c69f58c2782759aaf529c2779fbcdf4a75b2a97 (patch)
tree30c4d589965ec3525f77effcfe7029fa27ecc93e /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
parente1ddb07c7c0cc45210739f25c19adbd93ffa639d (diff)
downloadeclipse.platform.swt-7c69f58c2782759aaf529c2779fbcdf4a75b2a97.tar.gz
eclipse.platform.swt-7c69f58c2782759aaf529c2779fbcdf4a75b2a97.tar.xz
eclipse.platform.swt-7c69f58c2782759aaf529c2779fbcdf4a75b2a97.zip
Bug 29779 - BIDI: lack of ability to change orientation of widget in runtime
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
index a672a894ad..5db29b6f1b 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
@@ -966,7 +966,7 @@ String getNameText () {
* @since 2.1.2
*/
public int getOrientation () {
- return super._getOrientation ();
+ return super.getOrientation ();
}
/**
@@ -2089,7 +2089,7 @@ void setOrientation (boolean create) {
* @since 2.1.2
*/
public void setOrientation (int orientation) {
- super._setOrientation (orientation);
+ super.setOrientation (orientation);
}
/**