mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
At least show the window when wParam is TRUE and the window is currently
invisible svn path=/trunk/; revision=11705
This commit is contained in:
parent
90125b20eb
commit
c99ffa31ca
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: defwnd.c,v 1.146 2004/09/12 19:47:49 weiden Exp $
|
/* $Id: defwnd.c,v 1.147 2004/11/19 23:07:09 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
|
@ -272,6 +272,11 @@ UserGetInsideRectNC(HWND hWnd, RECT *rect)
|
||||||
VOID
|
VOID
|
||||||
DefWndSetRedraw(HWND hWnd, WPARAM wParam)
|
DefWndSetRedraw(HWND hWnd, WPARAM wParam)
|
||||||
{
|
{
|
||||||
|
if ((BOOL) wParam && 0 == (GetWindowLong(hWnd, GWL_STYLE) & WS_VISIBLE))
|
||||||
|
{
|
||||||
|
ShowWindow(hWnd, SW_NORMAL);
|
||||||
|
}
|
||||||
|
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue