diff options
author | Tobias Hunger <[email protected]> | 2015-04-10 16:04:42 +0200 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2015-04-14 11:21:21 +0000 |
commit | dcdcf540487448d0f4f0b3cb2ccdd1a305210737 (patch) | |
tree | 00aeccc70106289ccea520a44dedf11546937232 /src/plugins/vcsbase/vcsbaseclient.cpp | |
parent | e4db1211ff7291e6e08ccc4991918559745d39bc (diff) |
Vcs: Move vcsFullySynchronousExec into VcsBaseClientImpl
Use that in the gitplugin in favor of fullySynchronousGit.
Change-Id: Ifd981f3fc5e87e16ad52caf32c204f81acffe586
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/vcsbase/vcsbaseclient.cpp')
-rw-r--r-- | src/plugins/vcsbase/vcsbaseclient.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/vcsbase/vcsbaseclient.cpp b/src/plugins/vcsbase/vcsbaseclient.cpp index 2f3dd975c4b..3bfc60ce98b 100644 --- a/src/plugins/vcsbase/vcsbaseclient.cpp +++ b/src/plugins/vcsbase/vcsbaseclient.cpp @@ -386,11 +386,9 @@ bool VcsBaseClient::synchronousPush(const QString &workingDir, return resp.result == Utils::SynchronousProcessResponse::Finished; } -bool VcsBaseClient::vcsFullySynchronousExec(const QString &workingDir, - const QStringList &args, - QByteArray *outputData, - QByteArray *errorData, - unsigned flags) const +bool VcsBaseClientImpl::vcsFullySynchronousExec(const QString &workingDir, const QStringList &args, + QByteArray *outputData, QByteArray *errorData, + unsigned flags) const { QByteArray internalErrorData; QScopedPointer<VcsCommand> command(createCommand(workingDir)); |