Changeset 147
- Timestamp:
- 09/02/10 21:22:35 (17 months ago)
- Location:
- cafu/trunk/ExtLibs/wxWidgets/src/common
- Files:
-
- 2 modified
-
appbase.cpp (modified) (1 diff)
-
evtloopcmn.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cafu/trunk/ExtLibs/wxWidgets/src/common/appbase.cpp
r107 r147 370 370 wxLog::FlushActive(); 371 371 #endif 372 373 // When user idle event handling code 374 // - schedules an object for deletion, and 375 // - continuously requests more idle events, 376 // then without this, the objects are collected in ProcessPendingEvents() 377 // only when the next *external* event occurs. 378 DeletePendingObjects(); 372 379 373 380 return event.MoreRequested(); -
cafu/trunk/ExtLibs/wxWidgets/src/common/evtloopcmn.cpp
r107 r147 140 140 // generate and process idle events for as long as we don't 141 141 // have anything else to do 142 while ( !Pending() && ProcessIdle() )142 while ( !Pending() && ProcessIdle() && !m_shouldExit ) 143 143 ; 144 144
