diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2014-07-17 13:53:09 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2014-07-18 11:19:54 +0200 |
commit | febdfeb92fb77c5d0700e522edaaf470d2ee3416 (patch) | |
tree | ecb34da9019c276f0f030c76b20d731c7c8f5228 /src/plugins/git/gitversioncontrol.cpp | |
parent | 50f0336c444302d654de96337c2823f3be7231a8 (diff) | |
download | qt-creator-febdfeb92fb77c5d0700e522edaaf470d2ee3416.tar.gz |
Git: Rename gitBinaryPath => gitExecutable
Avoid confusion with gitBinDirectory
Change-Id: I335cf6bc82284e02e0652b057f0b80f292d6ddc0
Reviewed-by: Tobias Hunger <tobias.hunger@digia.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 e4f3808cf3..8b5ebb1c11 100644 --- a/src/plugins/git/gitversioncontrol.cpp +++ b/src/plugins/git/gitversioncontrol.cpp @@ -81,7 +81,7 @@ Core::Id GitVersionControl::id() const bool GitVersionControl::isConfigured() const { bool ok = false; - m_client->gitBinaryPath(&ok); + m_client->gitExecutable(&ok); return ok; } |