Commit 4bfc1f3b authored by Don Gagne's avatar Don Gagne

Switched WiFi to UDP

parent c81927fa
......@@ -162,7 +162,7 @@ void QGCToolBar::createUI()
addWidget(spacer);
_linkCombo = new QComboBox(this);
_linkCombo->addItem("WiFi");
_linkCombo->addItem("UDP");
connect(_linkCombo, SIGNAL(activated(int)), SLOT(_linkComboActivated(int)));
_linkCombo->setToolTip(tr("Choose the link to use"));
......@@ -701,7 +701,7 @@ void QGCToolBar::_connectButtonClicked(bool checked)
QString linkName = _linkCombo->currentText();
if (linkName == "WiFi") {
if (linkName == "UDP") {
UDPLink* link = new UDPLink;
Q_CHECK_PTR(link);
......
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