| 361 | } |
| 362 | |
| 363 | bool Application::onWindowClose(size_t _handle) |
| 364 | { |
| 365 | #if MYGUI_PLATFORM == MYGUI_PLATFORM_WIN32 |
| 366 | if (::IsIconic((HWND)_handle)) |
| 367 | ShowWindow((HWND)_handle, SW_SHOWNORMAL); |
| 368 | #endif |
| 369 | |
| 370 | CommandManager::getInstance().executeCommand("Command_QuitApp"); |
| 371 | return false; |
| 372 | } |
| 373 | |
| 374 | void Application::command_StatisticInfo(const MyGUI::UString& _commandName, bool& _result) |
| 375 | { |
nothing calls this directly
no test coverage detected