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

OP-958 Fixed a connection problem due to missing qRegisterMetaType for USBPortInfo

This commit is contained in:
a*morale 2013-05-25 00:50:04 +02:00 committed by Oleg Semyonov
parent b00e25c393
commit 667c717e68

View File

@ -48,7 +48,7 @@ USBMonitor::USBMonitor(QObject *parent) : QThread(parent)
hid_manager = NULL;
listMutex = new QMutex();
knowndevices.clear();
qRegisterMetaType<USBPortInfo>("USBPortInfo");
m_terminate = false;
start();
}