# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1335473270 0 # Node ID 724a7361cb42485be7dc3cb16e868f36e20d1d2c # Parent 9dbd2984c1e5f0225fee11cbaa7e7c8a212005fc Missing parameter to WinSetParent() on OS/2. diff -r 9dbd2984c1e5 -r 724a7361cb42 os2/dw.c --- 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;