| 1558 | } |
| 1559 | |
| 1560 | void CMainFrame::OnActivateApp(BOOL bActive, HTASK hTask) { |
| 1561 | #if 0 |
| 1562 | CFrameWnd::OnActivateApp(bActive, hTask); |
| 1563 | |
| 1564 | if (bActive) { |
| 1565 | theApp.resume(); |
| 1566 | mprintf_at(2,0,0, "App Active "); |
| 1567 | } |
| 1568 | else { |
| 1569 | theApp.pause(); |
| 1570 | mprintf_at(2,0,0, "App Inactive"); |
| 1571 | } |
| 1572 | |
| 1573 | ((oeLnxApplication *)Descent)->run_handler(this->m_hWnd, WM_ACTIVATEAPP, (unsigned)bActive, 0); |
| 1574 | #endif |
| 1575 | } |
| 1576 | |
| 1577 | // --------------------------------------------------------------------------- |
| 1578 | // These functions handle the status bar and displaying stuff in the status bar. |
nothing calls this directly
no test coverage detected