- Timestamp:
- Nov 5, 2002, 3:33:32 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/region.cpp
r8871 r9388 1 /* $Id: region.cpp,v 1.2 8 2002-07-15 10:02:29sandervl Exp $ */1 /* $Id: region.cpp,v 1.29 2002-11-05 14:33:32 sandervl Exp $ */ 2 2 3 3 /* … … 34 34 #include "oslibgpi.h" 35 35 #include <stats.h> 36 #include "dibsect.h" 36 37 37 38 #define DBG_LOCALLOG DBG_region … … 1450 1451 #endif 1451 1452 1453 1452 1454 pDCData pHps = (pDCData)OSLibGpiQueryDCData((HPS)hdc); 1453 1455 … … 1480 1482 if(hbrushRestore) 1481 1483 SelectObject(hdc, hbrushRestore); 1484 1485 /* PF Sync DIBSection as well */ 1486 if(DIBSection::getSection() != NULL) 1487 { 1488 DIBSection *dsect = DIBSection::findHDC(hdc); 1489 if(dsect) 1490 { 1491 dsect->sync(hdc, 0, dsect->GetHeight()); 1492 } 1493 } 1494 1482 1495 1483 1496 return(success);
Note:
See TracChangeset
for help on using the changeset viewer.