diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-04-29 12:50:12 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-05-07 13:07:14 +0000 |
commit | a44c403b5f580e786a380766638df440b1f31ae3 (patch) | |
tree | 94b28a5b90be78215cecc6f132a5caf56176abea /src/plugins/subversion | |
parent | bba65155620fada5f85370bd667e602bd094139c (diff) | |
download | qt-creator-a44c403b5f580e786a380766638df440b1f31ae3.tar.gz |
ShellCommand: Rename some signals
Rename the signals used to report stdout/stderr to make it clearer
what they actually do. Remove some unimplemented private member
functions while at it.
Change-Id: I7e856f906ccb45964f3b1b64336d4d8ebca7b9ee
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/subversion')
-rw-r--r-- | src/plugins/subversion/subversionclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/subversion/subversionclient.cpp b/src/plugins/subversion/subversionclient.cpp index 13f65b20d5..8bfa03249a 100644 --- a/src/plugins/subversion/subversionclient.cpp +++ b/src/plugins/subversion/subversionclient.cpp @@ -234,7 +234,7 @@ void DiffController::postCollectTextualDiffOutput() { auto command = new VcsCommand(m_workingDirectory, processEnvironment()); command->setCodec(EditorManager::defaultTextCodec()); - connect(command, &VcsCommand::output, this, &DiffController::slotTextualDiffOutputReceived); + connect(command, &VcsCommand::stdOutText, this, &DiffController::slotTextualDiffOutputReceived); // command->addFlags(diffExecutionFlags()); QStringList args; |