| 240 | } |
| 241 | |
| 242 | void MergeResultWindow::showUnsolvedConflictsStatusMessage() |
| 243 | { |
| 244 | if(m_pStatusBar != nullptr) |
| 245 | { |
| 246 | qint32 wsc; |
| 247 | qint32 nofUnsolved = getNumberOfUnsolvedConflicts(&wsc); |
| 248 | |
| 249 | m_persistentStatusMessage = i18n("Number of remaining unsolved conflicts: %1 (of which %2 are whitespace)", nofUnsolved, wsc); |
| 250 | |
| 251 | Q_EMIT statusBarMessage(m_persistentStatusMessage); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | void MergeResultWindow::slotRefresh() |
| 256 | { |
nothing calls this directly
no outgoing calls
no test coverage detected