| 233 | } |
| 234 | |
| 235 | void 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 | |
| 249 | void KDiff3FileItemAction::slotSaveForLater() |
| 250 | { |
nothing calls this directly
no outgoing calls
no test coverage detected