forked from qt-creator/qt-creator
SubversionClient: Use Qt5 style connect
Change-Id: I88f1de02edcb6c4406de64745ccc4cfc85f3d562 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
5b7e8f42c1
commit
2b66e48bcf
@@ -234,8 +234,7 @@ void DiffController::postCollectTextualDiffOutput()
|
||||
{
|
||||
auto command = new VcsCommand(m_workingDirectory, processEnvironment());
|
||||
command->setCodec(EditorManager::defaultTextCodec());
|
||||
connect(command, SIGNAL(output(QString)),
|
||||
this, SLOT(slotTextualDiffOutputReceived(QString)));
|
||||
connect(command, &VcsCommand::output, this, &DiffController::slotTextualDiffOutputReceived);
|
||||
// command->addFlags(diffExecutionFlags());
|
||||
|
||||
QStringList args;
|
||||
|
||||
Reference in New Issue
Block a user