Commit 44637770 authored by Don Gagne's avatar Don Gagne

Fix XBee on Windows

parent 58eef4b2
......@@ -162,7 +162,6 @@ bool XbeeLink::hardwareConnect()
emit tryConnectEnd(true);
this->m_connected = true;
emit connected();
emit connected(true);
return true;
}
......@@ -185,7 +184,6 @@ bool XbeeLink::_disconnect(void)
this->m_connected = false;
emit disconnected();
emit connected(false);
return true;
}
......
......@@ -273,7 +273,6 @@ void CommConfigurationWindow::setLinkType(qgc_link_t linktype)
{
XbeeLink *xbee = new XbeeLink();
tmpLink = xbee;
MainWindow::instance()->addLink(tmpLink);
break;
}
#endif // QGC_XBEE_ENABLED
......
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