mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:42:57 +00:00
What the HELL was I smokin? :)
svn path=/trunk/; revision=4367
This commit is contained in:
parent
962a19c45f
commit
f6818caa5e
1 changed files with 3 additions and 4 deletions
|
@ -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) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue