| 1108 | } |
| 1109 | |
| 1110 | void CMainFrame::SetIndicatorPos(int Frame, int Row) |
| 1111 | { |
| 1112 | std::string String = FTEnv.GetSettings()->General.bRowInHex ? // // // |
| 1113 | (conv::from_int_hex(Row, 2) + " / " + conv::from_int_hex(Frame, 2)) : |
| 1114 | (conv::from_int(Row, 3) + " / " + conv::from_int(Frame, 3)); |
| 1115 | m_wndStatusBar.SetPaneText(7, conv::to_wide(String).data()); |
| 1116 | } |
| 1117 | |
| 1118 | void CMainFrame::OnSize(UINT nType, int cx, int cy) |
| 1119 | { |
no test coverage detected