Commit 8a8e6339 authored by Bill Bonney's avatar Bill Bonney

Merge branch 'master' of https://github.com/diydrones/apm_planner

parents bc2ce1ab a87fdb8f
...@@ -49,7 +49,7 @@ linux-g++|linux-g++-64{ ...@@ -49,7 +49,7 @@ linux-g++|linux-g++-64{
BUILDDIR = $${OUT_PWD}/build BUILDDIR = $${OUT_PWD}/build
} }
DESTDIR = $${TARGETDIR}
LANGUAGE = C++ LANGUAGE = C++
OBJECTS_DIR = $${BUILDDIR}/obj OBJECTS_DIR = $${BUILDDIR}/obj
......
...@@ -374,7 +374,7 @@ void XbeeConfigurationWindow::setupPortList() ...@@ -374,7 +374,7 @@ void XbeeConfigurationWindow::setupPortList()
// Add the ports in reverse order, because we prepend them to the list // Add the ports in reverse order, because we prepend them to the list
for (int i = ports.size() - 1; i >= 0; i--) { for (int i = ports.size() - 1; i >= 0; i--) {
QString portString = QString(ports.at(i).portName.toLocal8Bit().constData()); QString portString = QString(ports.at(i).portName().toLocal8Bit().constData());
// Prepend newly found port to the list // Prepend newly found port to the list
if (portBox->findText(portString) == -1) { if (portBox->findText(portString) == -1) {
portBox->insertItem(0, portString); portBox->insertItem(0, portString);
......
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