* @brief Handle translation of default messages on the status bar */
| 1664 | * @brief Handle translation of default messages on the status bar |
| 1665 | */ |
| 1666 | void CMainFrame::GetMessageString(UINT nID, CString& rMessage) const |
| 1667 | { |
| 1668 | // load appropriate string |
| 1669 | const String s = I18n::LoadString(nID); |
| 1670 | if (s.length() > 0) |
| 1671 | AfxExtractSubString(rMessage, s.c_str(), 0); |
| 1672 | } |
| 1673 | |
| 1674 | void CMainFrame::ActivateFrame(int nCmdShow) |
| 1675 | { |
nothing calls this directly
no test coverage detected