From eb1ce50779ba3d212197820b5980c2706dff3e13 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 13 Aug 2014 17:22:07 +0200 Subject: [PATCH] Compile fixes for Qt 4.8 Change-Id: Ie28d5901fe27fec4f928204296bf1013e10c556a Reviewed-by: Daniel Teske --- src/plugins/git/gitclient.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index 886dea836f6..4fca4e0aa5f 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -217,7 +217,7 @@ void GitDiffHandler::postCollectShowDescription(const QString &id) return; } - m_controller->saveStateRequested(); + m_controller->requestSaveState(); m_controller->clear(m_waitMessage); VcsBase::Command *command = new VcsBase::Command(gitPath(), m_workingDirectory, @@ -305,7 +305,7 @@ void GitDiffHandler::postCollectTextualDiffOutput(const QString &gitCommand, con return; } - m_controller->saveStateRequested(); + m_controller->requestSaveState(); m_controller->clear(m_waitMessage); VcsBase::Command *command = new VcsBase::Command(gitPath(), m_workingDirectory, @@ -333,7 +333,7 @@ void GitDiffHandler::slotTextualDiffOutputReceived(const QString &contents) = DiffEditor::DiffUtils::readPatch( contents, m_controller->isIgnoreWhitespace(), &ok); m_controller->setDiffFiles(fileDataList, m_workingDirectory); - m_controller->restoreStateRequested(); + m_controller->requestRestoreState(); deleteLater(); }