Commit b20dca79 authored by Don Gagne's avatar Don Gagne

Fix flaky cross-platform variadic connect

parent 0b68fffc
......@@ -136,7 +136,7 @@ MainWindow::MainWindow(QSplashScreen* splashScreen, enum MainWindow::CUSTOM_MODE
this->setAttribute(Qt::WA_DeleteOnClose);
connect(menuActionHelper, SIGNAL(needToShowDockWidget(QString,bool)),SLOT(showDockWidget(QString,bool)));
connect(mavlink, &MAVLinkProtocol::protocolStatusMessage, this, &MainWindow::showCriticalMessage);
connect(mavlink, SIGNAL(protocolStatusMessage(const QString&, const QString&)), this, SIGNAL(showCriticalMessage(const QString&, const QString&)));
connect(mavlink, &MAVLinkProtocol::saveTempFlightDataLog, this, &MainWindow::_saveTempFlightDataLog);
loadSettings();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment