* @brief Go to next diff and select it. */
| 1244 | * @brief Go to next diff and select it. |
| 1245 | */ |
| 1246 | void CWebPageDiffFrame::OnNextdiff() |
| 1247 | { |
| 1248 | if (m_pWebDiffWindow->GetCurrentDiffIndex() != m_pWebDiffWindow->GetDiffCount() - 1) |
| 1249 | m_pWebDiffWindow->NextDiff(); |
| 1250 | else if (m_pDirDoc != nullptr) |
| 1251 | m_pDirDoc->MoveToNextDiff(this); |
| 1252 | } |
| 1253 | |
| 1254 | /** |
| 1255 | * @brief Update "Next diff" UI items |
nothing calls this directly
no test coverage detected