diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-04-13 11:38:44 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-04-13 10:40:58 +0000 |
commit | a55fb4a378644ab641f0663c8f2577f48a905491 (patch) | |
tree | 0be73f6792df29cb4b89dc9753074a0352696ace /src/plugins/git/gitversioncontrol.cpp | |
parent | ed5136897947ac863312eafebd5f26940e887b8c (diff) | |
download | qt-creator-a55fb4a378644ab641f0663c8f2577f48a905491.tar.gz |
Vcs: Move annotate and annotateRevisionRequested into VcsBaseClientImpl
... and use that in the Git client.
Change-Id: Ie70ec0d5908776d11eb69613d45f565d4f0ce32b
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/git/gitversioncontrol.cpp')
-rw-r--r-- | src/plugins/git/gitversioncontrol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/gitversioncontrol.cpp b/src/plugins/git/gitversioncontrol.cpp index c6baad815a..ba9ec5589e 100644 --- a/src/plugins/git/gitversioncontrol.cpp +++ b/src/plugins/git/gitversioncontrol.cpp @@ -164,7 +164,7 @@ bool GitVersionControl::managesFile(const QString &workingDirectory, const QStri bool GitVersionControl::vcsAnnotate(const QString &file, int line) { const QFileInfo fi(file); - m_client->blame(fi.absolutePath(), QStringList(), fi.fileName(), QString(), line); + m_client->annotate(fi.absolutePath(), fi.fileName(), QString(), line); return true; } |