| 195 | } |
| 196 | |
| 197 | void KDiff3FileItemAction::slotCompareTwoFiles() |
| 198 | { |
| 199 | if(m_list.count() == 2) |
| 200 | { |
| 201 | QStringList args = { |
| 202 | Utils::urlToString(m_list.first()), |
| 203 | Utils::urlToString(m_list.last()) |
| 204 | }; |
| 205 | QProcess::startDetached("kdiff3", args); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | void KDiff3FileItemAction::slotCompareThreeFiles() |
| 210 | { |
nothing calls this directly
no outgoing calls
no test coverage detected