Browse Source

Autopilotplugins: Deal with multiple signals with the same name

QGC4.4
Lorenz Meier 10 years ago
parent
commit
c6bf0de625
  1. 2
      src/AutoPilotPlugins/AutoPilotPluginManager.cc

2
src/AutoPilotPlugins/AutoPilotPluginManager.cc

@ -40,7 +40,7 @@ AutoPilotPluginManager::AutoPilotPluginManager(QObject* parent) : @@ -40,7 +40,7 @@ AutoPilotPluginManager::AutoPilotPluginManager(QObject* parent) :
// We need to track uas coming and going so that we can instantiate plugins for each uas
connect(uasMgr, &UASManagerInterface::UASCreated, this, &AutoPilotPluginManager::_uasCreated);
connect(uasMgr, &UASManagerInterface::UASDeleted, this, &AutoPilotPluginManager::_uasDeleted);
connect(uasMgr, SIGNAL(UASDeleted(UASInterface*)), this, SLOT(_uasDeleted(UASInterface*)));
}
AutoPilotPluginManager::~AutoPilotPluginManager()

Loading…
Cancel
Save