summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2010-12-22 15:56:40 +0000
committerFelipe Heidrich <fheidric>2010-12-22 15:56:40 +0000
commit45c9259f4bbd4b6754fbc6b535504db3c8611676 (patch)
tree034493e8b1f5bb1c694d3f99916eeb70c157f0a0 /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
parent11b6b18de02756e2f7505c5c1657c3724524ab0b (diff)
downloadeclipse.platform.swt-45c9259f4bbd4b6754fbc6b535504db3c8611676.tar.gz
eclipse.platform.swt-45c9259f4bbd4b6754fbc6b535504db3c8611676.tar.xz
eclipse.platform.swt-45c9259f4bbd4b6754fbc6b535504db3c8611676.zip
Bug 333053 - Multiple compiler warnings in I20101221-1019
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
index ee98c5bbdf..07a409538e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
@@ -1430,7 +1430,7 @@ void setOrientation (boolean create) {
int orientation = style & flags;
Control [] children = _getChildren ();
for (int i=0; i<children.length; i++) {
- children[i].setOrientation (orientation);
+ children[i]._setOrientation (orientation);
}
if (((style & SWT.RIGHT_TO_LEFT) != 0) != ((style & SWT.MIRRORED) != 0)) {
moveChildren (-1);