| 194 | } |
| 195 | |
| 196 | void AppBase::executeLaunch() |
| 197 | { |
| 198 | std::set_terminate( onTerminate ); |
| 199 | |
| 200 | // a quit() was called from the app constructor; don't launch |
| 201 | if( mQuitRequested ) |
| 202 | return; |
| 203 | |
| 204 | mLaunchCalled = true; |
| 205 | launch(); |
| 206 | } |
| 207 | |
| 208 | // static |
| 209 | void AppBase::cleanupLaunch() |