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/changeselectiondialog.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/changeselectiondialog.cpp')
-rw-r--r-- | src/plugins/git/changeselectiondialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/git/changeselectiondialog.cpp b/src/plugins/git/changeselectiondialog.cpp index a22c10783e..f7e41a41f0 100644 --- a/src/plugins/git/changeselectiondialog.cpp +++ b/src/plugins/git/changeselectiondialog.cpp @@ -58,7 +58,7 @@ ChangeSelectionDialog::ChangeSelectionDialog(const QString &workingDirectory, Co , m_command(NoCommand) { setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); - m_gitBinaryPath = GitPlugin::instance()->gitClient()->gitBinaryPath(); + m_gitExecutable = GitPlugin::instance()->gitClient()->gitExecutable(); m_ui->setupUi(this); m_ui->workingDirectoryEdit->setText(workingDirectory); m_gitEnvironment = GitPlugin::instance()->gitClient()->processEnvironment(); @@ -257,7 +257,7 @@ void ChangeSelectionDialog::recalculateDetails() connect(m_process, SIGNAL(finished(int)), this, SLOT(setDetails(int))); - m_process->start(m_gitBinaryPath, args); + m_process->start(m_gitExecutable, args); m_process->closeWriteChannel(); if (!m_process->waitForStarted()) m_ui->detailsText->setPlainText(tr("Error: Could not start Git.")); |