[Kde-cygwin-cvs] CVS: qt-3/src/kernel qwidget_win.cpp,1.1.2.15.2.55,1.1.2.15.2.56
Status: Inactive
Brought to you by:
habacker
From: Christian E. <che...@us...> - 2005-08-06 16:45:20
|
Update of /cvsroot/kde-cygwin/qt-3/src/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20310/src/kernel Modified Files: Tag: QT_WIN32_3_3_BRANCH qwidget_win.cpp Log Message: reduce flicker Index: qwidget_win.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/kernel/Attic/qwidget_win.cpp,v retrieving revision 1.1.2.15.2.55 retrieving revision 1.1.2.15.2.56 diff -u -r1.1.2.15.2.55 -r1.1.2.15.2.56 --- qwidget_win.cpp 5 Aug 2005 16:27:32 -0000 1.1.2.15.2.55 +++ qwidget_win.cpp 6 Aug 2005 16:45:11 -0000 1.1.2.15.2.56 @@ -1227,7 +1227,8 @@ setWState( Qt::WState_InPaintEvent ); QPaintEvent e( rgn ); - this->erase( rgn ); + if ( erase ) + this->erase( rgn ); QApplication::sendSpontaneousEvent( this, &e ); clearWState ( Qt::WState_InPaintEvent ); } |