Skip to content
Snippets Groups Projects
Commit 2b66e48b authored by Tobias Hunger's avatar Tobias Hunger Committed by Orgad Shaneh
Browse files

SubversionClient: Use Qt5 style connect


Change-Id: I88f1de02edcb6c4406de64745ccc4cfc85f3d562
Reviewed-by: default avatarOrgad Shaneh <orgads@gmail.com>
parent 5b7e8f42
No related branches found
No related tags found
No related merge requests found
...@@ -234,8 +234,7 @@ void DiffController::postCollectTextualDiffOutput() ...@@ -234,8 +234,7 @@ void DiffController::postCollectTextualDiffOutput()
{ {
auto command = new VcsCommand(m_workingDirectory, processEnvironment()); auto command = new VcsCommand(m_workingDirectory, processEnvironment());
command->setCodec(EditorManager::defaultTextCodec()); command->setCodec(EditorManager::defaultTextCodec());
connect(command, SIGNAL(output(QString)), connect(command, &VcsCommand::output, this, &DiffController::slotTextualDiffOutputReceived);
this, SLOT(slotTextualDiffOutputReceived(QString)));
// command->addFlags(diffExecutionFlags()); // command->addFlags(diffExecutionFlags());
QStringList args; QStringList args;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment