diff dwt/widgets/Composite.d @ 75:f824f1836871

Tree
author Frank Benoit <benoit@tionex.de>
date Tue, 05 Feb 2008 03:50:39 +0100
parents 0f25be5cbe6f
children 43c42c637c9c
line wrap: on
line diff
--- a/dwt/widgets/Composite.d	Tue Feb 05 00:15:31 2008 +0100
+++ b/dwt/widgets/Composite.d	Tue Feb 05 03:50:39 2008 +0100
@@ -742,10 +742,10 @@
 //              if ((bits & OS.WS_CLIPSIBLINGS) is 0) wp.flags |= OS.SWP_NOCOPYBITS;
 //          }
             if (defer) {
-                hdwp = DeferWindowPos (hdwp, wp.hwnd, null, wp.x, wp.y, wp.cx, wp.cy, wp.flags);
+                hdwp = DeferWindowPos (hdwp, wp._hwnd, null, wp.x, wp.y, wp.cx, wp.cy, wp.flags);
                 if (hdwp is null) return false;
             } else {
-                SetWindowPos (wp.hwnd, null, wp.x, wp.y, wp.cx, wp.cy, wp.flags);
+                SetWindowPos (wp._hwnd, null, wp.x, wp.y, wp.cx, wp.cy, wp.flags);
             }
         }
     }