javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Composite.java
changeset 35 85266cc22c7f
parent 21 2a9601315dfc
child 47 f40128debb5d
child 50 023eef975703
--- a/javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Composite.java	Thu May 27 12:49:31 2010 +0300
+++ b/javauis/eswt_qt/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Composite.java	Fri Jun 11 13:33:44 2010 +0300
@@ -326,7 +326,7 @@
     for(int i = 0; i < count; ++i) {
         int handle = list[i];
         if (handle != 0) {
-            Widget widget = display.getWidget (handle);
+            Widget widget = Display.getWidget (handle);
             if (widget != null && widget != this) {
                 if (widget instanceof Control && !(widget instanceof Shell)) {
                     children [childControls++] = (Control) widget;
@@ -519,7 +519,7 @@
         if(dx != 0) {
             Control[] children =_getChildren();
             try {
-                display.blockedQtEventType = OS.QSWTEVENT_WIDGETMOVED;
+                Display.blockedQtEventType = OS.QSWTEVENT_WIDGETMOVED;
                 for (int i = 0; i < children.length; ++i) {
                     Control child = children[i];
                     if (!child.isDisposed()) {
@@ -529,7 +529,7 @@
                     }
                 }
             } finally {
-                display.blockedQtEventType = OS.QEVENT_NONE;
+                Display.blockedQtEventType = OS.QEVENT_NONE;
             }
         }
     }