Changeset 769 for trunk/src/gui/painting/qbackingstore.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/painting/qbackingstore.cpp
r651 r769 353 353 dirtyOnScreen += toClean; 354 354 355 #ifdef Q_WS_QWS 356 toClean.translate(tlwOffset); 357 #endif 358 355 359 #ifdef QT_NO_PAINT_DEBUG 356 360 windowSurface->beginPaint(toClean); … … 767 771 return; 768 772 769 windowSurface->beginPaint(decorationRegion); 773 //### The QWS decorations do not always paint the pixels they promise to paint. 774 // This causes painting problems with QWSMemorySurface. Since none of the other 775 // window surfaces actually use the region, passing an empty region is a safe 776 // workaround. 777 778 windowSurface->beginPaint(QRegion()); 770 779 771 780 QPaintEngine *engine = windowSurface->paintDevice()->paintEngine();
Note:
See TracChangeset
for help on using the changeset viewer.