Changeset 5951 for trunk/src/user32/win32wbasenonclient.cpp
- Timestamp:
- Jun 10, 2001, 2:05:41 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbasenonclient.cpp
r5935 r5951 1 /* $Id: win32wbasenonclient.cpp,v 1.3 1 2001-06-09 14:50:22sandervl Exp $ */1 /* $Id: win32wbasenonclient.cpp,v 1.32 2001-06-10 12:05:41 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (non-client methods) … … 527 527 //Check context help 528 528 if (dwExStyle & WS_EX_CONTEXTHELP) 529 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1;529 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1; 530 530 if (pt.x > rect.right) return HTHELP; 531 531 … … 533 533 /* In win95 there is automatically a Maximize button when there is a minimize one*/ 534 534 if ((dwStyle & WS_MAXIMIZEBOX)|| (dwStyle & WS_MINIMIZEBOX)) 535 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1;535 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1; 536 536 if (pt.x > rect.right) return HTMAXBUTTON; 537 537 … … 539 539 /* In win95 there is automatically a Maximize button when there is a Maximize one*/ 540 540 if ((dwStyle & WS_MINIMIZEBOX)||(dwStyle & WS_MAXIMIZEBOX)) 541 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1;541 rect.right -= GetSystemMetrics(SM_CXSIZE) + 1; 542 542 543 543 if (pt.x > rect.right) return HTMINBUTTON; … … 887 887 HDC memDC; 888 888 HBITMAP memBmp,oldBmp; 889 890 if(fOS2Look) return; 889 891 890 892 memDC = CreateCompatibleDC(hdc);
Note:
See TracChangeset
for help on using the changeset viewer.