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

Method slotMergeThreeWay

kdiff3fileitemactionplugin/kdiff3fileitemaction.cpp:235–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233}
234
235void KDiff3FileItemAction::slotMergeThreeWay()
236{
237 if(m_list.count() > 0 && s_pHistory && s_pHistory->count() >= 2)
238 {
239 QStringList args = {
240 s_pHistory->at(1),
241 s_pHistory->at(0),
242 Utils::urlToString(m_list.first()),
243 ("-o" + Utils::urlToString(m_list.first()))
244 };
245 QProcess::startDetached("kdiff3", args);
246 }
247}
248
249void KDiff3FileItemAction::slotSaveForLater()
250{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected