forked from qt-creator/qt-creator
Avoid signal overloading
Choose a different name for them. Change-Id: Ie2cc2c85dca72b7f7ff84c95fb0abd0a0e99a63d Reviewed-by: Henning Gründl <henning.gruendl@qt.io> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -195,7 +195,7 @@ void SshDeviceProcess::handleConnected()
|
||||
d->process->requestX11Forwarding(display);
|
||||
if (runInTerminal()) {
|
||||
d->process->requestTerminal();
|
||||
connect(&d->consoleProcess, QOverload<QProcess::ProcessError>::of(&ConsoleProcess::error),
|
||||
connect(&d->consoleProcess, &ConsoleProcess::errorOccurred,
|
||||
this, &DeviceProcess::error);
|
||||
connect(&d->consoleProcess, &ConsoleProcess::processStarted,
|
||||
this, &SshDeviceProcess::handleProcessStarted);
|
||||
|
||||
Reference in New Issue
Block a user