| 170 | KDiff3FileItemAction::~KDiff3FileItemAction() = default; |
| 171 | |
| 172 | void KDiff3FileItemAction::slotCompareWith() |
| 173 | { |
| 174 | if(m_list.count() > 0 && s_pHistory && !s_pHistory->empty()) |
| 175 | { |
| 176 | QStringList args = { |
| 177 | s_pHistory->first(), |
| 178 | Utils::urlToString(m_list.first()) |
| 179 | }; |
| 180 | QProcess::startDetached("kdiff3", args); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | void KDiff3FileItemAction::slotCompareWithHistoryItem() |
| 185 | { |
nothing calls this directly
no outgoing calls
no test coverage detected