* @brief Update diff-number pane text in file compare. * The diff number pane shows selected difference/amount of differences when * there is difference selected. If there is no difference selected, then * the panel shows amount of differences. If there are ignored differences, * those are not count into numbers. * @param [in] pCmdUI UI component to update. */
| 1477 | * @param [in] pCmdUI UI component to update. |
| 1478 | */ |
| 1479 | void CMergeDoc::OnUpdateStatusNum(CCmdUI* pCmdUI) |
| 1480 | { |
| 1481 | const String s = CMergeFrameCommon::GetDiffStatusString(GetCurrentDiff(), m_diffList.GetSignificantDiffs()); |
| 1482 | pCmdUI->SetText(s.c_str()); |
| 1483 | } |
| 1484 | |
| 1485 | /** |
| 1486 | * @brief Change number of diff context lines |
nothing calls this directly
no test coverage detected