mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
*** empty log message ***
svn path=/trunk/; revision=4295
This commit is contained in:
parent
593d22e757
commit
19af3dbdde
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: defwnd.c,v 1.33 2003/03/12 16:27:32 rcampbell Exp $
|
/* $Id: defwnd.c,v 1.34 2003/03/12 16:36:18 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
|
||||||
|
@ -319,10 +319,10 @@ static void UserDrawCaptionNC( HDC hDC, RECT *rect, HWND hWnd,
|
||||||
{
|
{
|
||||||
RECT r = *rect;
|
RECT r = *rect;
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
|
/* REWRITE IN PROGRESS: Don't touch -- rcampbell -- 03-12-2003 */
|
||||||
/* Implement and Use DrawCaption() */
|
/* Implement and Use DrawCaption() */
|
||||||
SelectObject( hDC, GetSysColorBrush(active ? COLOR_ACTIVECAPTION : COLOR_INACTIVECAPTION) );
|
SelectObject( hDC, GetSysColorBrush(active ? COLOR_ACTIVECAPTION : COLOR_INACTIVECAPTION) );
|
||||||
PatBlt(hDC,rect->left + GetSystemMetrics(SM_CYFIXEDFRAME), rect->top + 3, rect->right - (GetSystemMetrics(SM_CYFIXEDFRAME) * 2), rect->bottom - 1, PATCOPY );
|
PatBlt(hDC,rect->left + GetSystemMetrics(SM_CXFIXEDFRAME), rect->top + 3, rect->right - (GetSystemMetrics(SM_CXFIXEDFRAME) * 2), rect->bottom - 1, PATCOPY );
|
||||||
|
|
||||||
if (style & WS_SYSMENU)
|
if (style & WS_SYSMENU)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue