changeset 1668:724a7361cb42

Missing parameter to WinSetParent() on OS/2.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 26 Apr 2012 20:47:50 +0000
parents 9dbd2984c1e5
children 36a090da4cb1
files os2/dw.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/os2/dw.c	Thu Apr 26 20:33:39 2012 +0000
+++ b/os2/dw.c	Thu Apr 26 20:47:50 2012 +0000
@@ -7243,7 +7243,7 @@
          thisbox->count--;
          /* If it isn't padding, reset the parent */
          if(handle)
-            WinSetParent(handle, HWND_OBJECT);
+            WinSetParent(handle, HWND_OBJECT, FALSE);
          /* Queue a redraw on the top-level window */
          _dw_redraw(_toplevel_window(handle), TRUE);
          return DW_ERROR_NONE;
@@ -7288,7 +7288,7 @@
       thisbox->count--;
       /* If it isn't padding, reset the parent */
       if(handle)
-         WinSetParent(handle, HWND_OBJECT);
+         WinSetParent(handle, HWND_OBJECT, FALSE);
       /* Queue a redraw on the top-level window */
       _dw_redraw(_toplevel_window(handle), TRUE);
       return DW_ERROR_NONE;