What the HELL was I smokin? :)

svn path=/trunk/; revision=4367
This commit is contained in:
Richard Campbell 2003-03-20 04:03:13 +00:00
parent 962a19c45f
commit f6818caa5e

View file

@ -1,4 +1,4 @@
/* $Id: defwnd.c,v 1.39 2003/03/16 23:01:07 rcampbell Exp $ /* $Id: defwnd.c,v 1.40 2003/03/20 04:03:13 rcampbell 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
@ -329,7 +329,7 @@ static void UserDrawMaxButton( HWND hWnd, HDC hDC, BOOL bDown )
rect.top + iBmpHeight + FrameSize + 1); rect.top + iBmpHeight + FrameSize + 1);
DrawFrameControl( hDC, &rect, DFC_CAPTION, DrawFrameControl( hDC, &rect, DFC_CAPTION,
(IsZoomed(hWnd) ? DFCS_CAPTIONMAX : DFCS_CAPTIONRESTORE) | (IsZoomed(hWnd) ? DFCS_CAPTIONRESTORE : DFCS_CAPTIONMAX) |
(bDown ? DFCS_PUSHED : 0) | (bDown ? DFCS_PUSHED : 0) |
(IsMaxBoxActive(hWnd) ? 0 : DFCS_INACTIVE) ); (IsMaxBoxActive(hWnd) ? 0 : DFCS_INACTIVE) );
} }
@ -357,8 +357,7 @@ static void UserDrawMinButton( HWND hWnd, HDC hDC, BOOL bDown )
rect.top + iBmpHeight + FrameSize + 1 ); rect.top + iBmpHeight + FrameSize + 1 );
DrawFrameControl( hDC, &rect, DFC_CAPTION, DrawFrameControl( hDC, &rect, DFC_CAPTION,
(IsZoomed(hWnd) ? DFCS_CAPTIONMAX : DFCS_CAPTIONRESTORE) | DFCS_CAPTIONMIN | (bDown ? DFCS_PUSHED : 0) |
(bDown ? DFCS_PUSHED : 0) |
(IsMinBoxActive(hWnd) ? 0 : DFCS_INACTIVE) ); (IsMinBoxActive(hWnd) ? 0 : DFCS_INACTIVE) );
} }