summaryrefslogtreecommitdiff
path: root/src/plugins/git/remotedialog.cpp
diff options
context:
space:
mode:
authorPetar Perisin <petar.perisin@gmail.com>2013-06-03 23:12:17 +0200
committerPetar Perisin <petar.perisin@gmail.com>2013-06-04 10:58:56 +0200
commit80a7107691643f5df121e383efb1f1975b64c744 (patch)
tree6186b3eff6536fc050995a7b479d42763c77583d /src/plugins/git/remotedialog.cpp
parent26142b849bee4e3f8913ad1eeee1eafd97076eeb (diff)
downloadqt-creator-80a7107691643f5df121e383efb1f1975b64c744.tar.gz
Git - execute fetch asynchronously
Change-Id: Ic2243adaa36444099f834676186331927f3f4588 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/git/remotedialog.cpp')
-rw-r--r--src/plugins/git/remotedialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/remotedialog.cpp b/src/plugins/git/remotedialog.cpp
index a027d62bf2..37ebd29421 100644
--- a/src/plugins/git/remotedialog.cpp
+++ b/src/plugins/git/remotedialog.cpp
@@ -184,7 +184,7 @@ void RemoteDialog::fetchFromRemote()
int row = indexList.at(0).row();
const QString remoteName = m_remoteModel->remoteName(row);
- m_remoteModel->client()->synchronousFetch(m_remoteModel->workingDirectory(), remoteName);
+ m_remoteModel->client()->fetch(m_remoteModel->workingDirectory(), remoteName);
}
void RemoteDialog::updateButtonState()