1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

RFM22B: Fixed removal of the OPLink configuration window when the OPLink is disconnected.

This commit is contained in:
Brian Webb 2012-10-21 19:49:58 -04:00 committed by Brian Webb
parent bd42083376
commit ca31fe99ac

View File

@ -149,7 +149,7 @@ ConfigGadgetWidget::ConfigGadgetWidget(QWidget *parent) : QWidget(parent)
// Create the timer that is used to timeout the connection to the OPLink.
oplinkTimeout = new QTimer(this);
connect(oplinkTimeout, SIGNAL(timeout()),this,SLOT(onOPLinktremeDisconnect()));
connect(oplinkTimeout, SIGNAL(timeout()), this, SLOT(onOPLinkDisconnect()));
oplinkConnected = false;
}