MCPcopy Create free account
hub / github.com/KDE/kdiff3 / showUnsolvedConflictsStatusMessage

Method showUnsolvedConflictsStatusMessage

src/mergeresultwindow.cpp:242–253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240}
241
242void 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
255void MergeResultWindow::slotRefresh()
256{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected