[Kde-cygwin-cvs] CVS: qt-3/src/kernel qapplication_win.cpp,1.1.2.30.2.93,1.1.2.30.2.94 qeventloop_wi
Status: Inactive
Brought to you by:
habacker
From: Christian E. <che...@us...> - 2005-10-14 04:53:53
|
Update of /cvsroot/kde-cygwin/qt-3/src/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29884/src/kernel Modified Files: Tag: QT_WIN32_3_3_BRANCH qapplication_win.cpp qeventloop_win.cpp Log Message: fix compile error & crash Index: qapplication_win.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/kernel/Attic/qapplication_win.cpp,v retrieving revision 1.1.2.30.2.93 retrieving revision 1.1.2.30.2.94 diff -u -r1.1.2.30.2.93 -r1.1.2.30.2.94 --- qapplication_win.cpp 9 Oct 2005 17:07:23 -0000 1.1.2.30.2.93 +++ qapplication_win.cpp 14 Oct 2005 04:53:43 -0000 1.1.2.30.2.94 @@ -266,8 +266,8 @@ { return QApplication::sendSpontaneousEvent( receiver, event ); } - void showChildren( bool spontaneous ) { showChildren( spontaneous ); } - void hideChildren( bool spontaneous ) { hideChildren( spontaneous ); } + void showChildren( bool spontaneous ) { QWidget::showChildren( spontaneous ); } + void hideChildren( bool spontaneous ) { QWidget::hideChildren( spontaneous ); } }; Index: qeventloop_win.cpp =================================================================== RCS file: /cvsroot/kde-cygwin/qt-3/src/kernel/Attic/qeventloop_win.cpp,v retrieving revision 1.1.2.10.2.23 retrieving revision 1.1.2.10.2.24 diff -u -r1.1.2.10.2.23 -r1.1.2.10.2.24 --- qeventloop_win.cpp 11 Oct 2005 21:01:12 -0000 1.1.2.10.2.23 +++ qeventloop_win.cpp 14 Oct 2005 04:53:43 -0000 1.1.2.10.2.24 @@ -55,9 +55,7 @@ QSNDict sn_write; QSNDict sn_except; -struct QWinConfigRequest; extern bool qt_is_gui_used; -extern QList<QWinConfigRequest*> *configRequests; void qWinProcessConfigRequests(); // from qeventloop_win_utils.cpp @@ -248,8 +246,7 @@ // handle gui and posted events if ( qt_is_gui_used ) { - if ( configRequests ) // any pending configs? - qWinProcessConfigRequests(); + qWinProcessConfigRequests(); QApplication::sendPostedEvents(); MSG msg; |