| 125 | } |
| 126 | |
| 127 | KDevelop::VcsJob* KDevSvnPlugin::status(const QList<QUrl>& localLocations, |
| 128 | KDevelop::IBasicVersionControl::RecursionMode mode) |
| 129 | { |
| 130 | auto* job = new SvnStatusJob(this); |
| 131 | job->setLocations(localLocations); |
| 132 | job->setRecursive((mode == KDevelop::IBasicVersionControl::Recursive)); |
| 133 | return job; |
| 134 | } |
| 135 | |
| 136 | KDevelop::VcsJob* KDevSvnPlugin::add(const QList<QUrl>& localLocations, |
| 137 | KDevelop::IBasicVersionControl::RecursionMode recursion) |
nothing calls this directly
no test coverage detected