| 283 | } |
| 284 | |
| 285 | void SvnClient::log( const char* path, |
| 286 | const svn::Revision& start, |
| 287 | const svn::Revision& end, |
| 288 | int limit, |
| 289 | bool discoverChangedPaths, |
| 290 | bool strictNodeHistory ) |
| 291 | { |
| 292 | svn::Pool pool; |
| 293 | svn::Targets target(path); |
| 294 | svn_error_t *error; |
| 295 | |
| 296 | error = svn_client_log2 ( |
| 297 | target.array(pool), |
| 298 | start.revision(), |
| 299 | end.revision(), |
| 300 | limit, |
| 301 | discoverChangedPaths ? 1 : 0, |
| 302 | strictNodeHistory ? 1 : 0, |
| 303 | kdev_logReceiver, |
| 304 | this, |
| 305 | m_ctxt->ctx(), // client ctx |
| 306 | pool); |
| 307 | |
| 308 | if (error != nullptr) |
| 309 | { |
| 310 | throw svn::ClientException (error); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | void SvnClient::emitLogEventReceived( const KDevelop::VcsEvent& ev ) |
| 315 | { |