| 287 | } |
| 288 | |
| 289 | void VcsPluginHelper::diffToBase() |
| 290 | { |
| 291 | Q_D(VcsPluginHelper); |
| 292 | |
| 293 | SINGLEURL_SETUP_VARS |
| 294 | if (!ICore::self()->documentController()->saveAllDocuments()) { |
| 295 | return; |
| 296 | } |
| 297 | |
| 298 | auto* patch =new VCSDiffPatchSource(new VCSStandardDiffUpdater(iface, url)); |
| 299 | showVcsDiff(patch); |
| 300 | } |
| 301 | |
| 302 | void VcsPluginHelper::diffForRev() |
| 303 | { |
nothing calls this directly
no test coverage detected