From ec5c280e21ea159287621ab564a14c74582588a5 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 7 Jun 2012 10:39:35 +0200 Subject: [PATCH] Fix commit to mercurial repositories Tasknumber: QTCREATORBUG-7511 Change-Id: I07991c1d96b3239e66d47d9c7d5c85f8fdc14af4 Reviewed-by: Hugues Delorme --- src/plugins/mercurial/mercurialplugin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/mercurial/mercurialplugin.cpp b/src/plugins/mercurial/mercurialplugin.cpp index e91fad15ed3..3dd9bb42940 100644 --- a/src/plugins/mercurial/mercurialplugin.cpp +++ b/src/plugins/mercurial/mercurialplugin.cpp @@ -552,8 +552,8 @@ void MercurialPlugin::commit() m_submitRepository = state.topLevel(); - connect(m_client, SIGNAL(parsedStatus(QList)), - this, SLOT(showCommitWidget(QList))); + connect(m_client, SIGNAL(parsedStatus(QList)), + this, SLOT(showCommitWidget(QList))); m_client->emitParsedStatus(m_submitRepository); } @@ -562,8 +562,8 @@ void MercurialPlugin::showCommitWidget(const QList &s VcsBaseOutputWindow *outputWindow = VcsBaseOutputWindow::instance(); //Once we receive our data release the connection so it can be reused elsewhere - disconnect(m_client, SIGNAL(parsedStatus(QList)), - this, SLOT(showCommitWidget(QList))); + disconnect(m_client, SIGNAL(parsedStatus(QList)), + this, SLOT(showCommitWidget(QList))); if (status.isEmpty()) { outputWindow->appendError(tr("There are no changes to commit."));