Changeset 195
- Timestamp:
- Jun 18, 2011, 7:23:01 AM (14 years ago)
- Location:
- trunk/src/kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel/qapplication_pm.cpp
r174 r195 3491 3491 QApplication::sendSpontaneousEvent( this, &e ); 3492 3492 if ( !testWFlags( WStaticContents ) ) 3493 repaint( !testWFlags(WResizeNoErase));3493 repaint( testWFlags(WNoAutoErase) != WNoAutoErase ); 3494 3494 } else { 3495 3495 QResizeEvent *e = new QResizeEvent( newSize, oldSize ); -
trunk/src/kernel/qwidget_pm.cpp
r155 r195 2002 2002 QApplication::sendEvent( this, &e ); 2003 2003 if ( !testWFlags( WStaticContents ) ) 2004 repaint( !testWFlags(WResizeNoErase));2004 repaint( testWFlags(WNoAutoErase) != WNoAutoErase ); 2005 2005 } 2006 2006 } else {
Note:
See TracChangeset
for help on using the changeset viewer.