Changeset 4596 for trunk/src/gdi32/region.cpp
- Timestamp:
- Nov 15, 2000, 2:56:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/region.cpp
r4557 r4596 1 /* $Id: region.cpp,v 1.1 6 2000-11-05 18:48:22sandervl Exp $ */1 /* $Id: region.cpp,v 1.17 2000-11-15 13:56:46 sandervl Exp $ */ 2 2 3 3 /* … … 374 374 } 375 375 376 dprintf(("SelectClipRgn: %x %x", hdc, hrgn)); 377 376 378 if(hrgn) 377 379 { … … 404 406 if (lComplexity != RGN_ERROR ) 405 407 { 406 dprintf(("SelectClipRgn: %x %x", hdc, hrgn));407 408 if(hrgnOldClip) 408 409 GpiDestroyRegion(pHps->hps, hrgnOldClip); … … 410 411 //todo: metafile recording 411 412 SetLastError(ERROR_SUCCESS_W); 413 414 //SvL: Must check if origin changed here. Sometimes happens when 415 // window looses focus. (don't know why....) 416 if(pHps->isClient) 417 selectClientArea(pHps); 412 418 return lComplexity; 413 419 } … … 518 524 lComplexity = GpiSetClipRegion(pHps->hps, hrgnCurrent, &hrgnOld); 519 525 SetLastError(ERROR_SUCCESS_W); 526 527 //SvL: Must check if origin changed here. Sometimes happens when 528 // window looses focus. (don't know why....) 529 if(pHps->isClient) 530 selectClientArea(pHps); 531 520 532 if (lComplexity != RGN_ERROR) 521 533 return lComplexity;
Note:
See TracChangeset
for help on using the changeset viewer.