| 207 | } |
| 208 | |
| 209 | void KDiff3FileItemAction::slotCompareThreeFiles() |
| 210 | { |
| 211 | if(m_list.count() == 3) |
| 212 | { |
| 213 | QStringList args = { |
| 214 | Utils::urlToString(m_list.at(0)), |
| 215 | Utils::urlToString(m_list.at(1)), |
| 216 | Utils::urlToString(m_list.at(2)) |
| 217 | }; |
| 218 | QProcess::startDetached("kdiff3", args); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | void KDiff3FileItemAction::slotMergeWith() |
| 223 | { |
nothing calls this directly
no outgoing calls
no test coverage detected