| 1100 | } |
| 1101 | |
| 1102 | void CMainFrame::SetIndicatorTime(int Min, int Sec, int MSec) |
| 1103 | { |
| 1104 | if (auto t = std::tie(Min, Sec, MSec); t != m_iIndicatorLast) { // // // |
| 1105 | m_iIndicatorLast = t; |
| 1106 | m_wndStatusBar.SetPaneText(6, FormattedW(L"%02i:%02i:%01i0", Min, Sec, MSec)); |
| 1107 | } |
| 1108 | } |
| 1109 | |
| 1110 | void CMainFrame::SetIndicatorPos(int Frame, int Row) |
| 1111 | { |
no test coverage detected