| 454 | } |
| 455 | |
| 456 | LRESULT CMainFrame::OnDestroy(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) { |
| 457 | AppSettings::Get().Save(); |
| 458 | |
| 459 | SaveSettings(); |
| 460 | |
| 461 | // unregister message filtering and idle updates |
| 462 | CMessageLoop* pLoop = _Module.GetMessageLoop(); |
| 463 | ATLASSERT(pLoop != NULL); |
| 464 | pLoop->RemoveMessageFilter(this); |
| 465 | pLoop->RemoveIdleHandler(this); |
| 466 | |
| 467 | bHandled = false; |
| 468 | return 0; |
| 469 | } |
| 470 | |
| 471 | LRESULT CMainFrame::OnAppAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { |
| 472 | CAboutDlg dlg; |