1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

Tiny SIGNAL&SLOT fix

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@439 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
sambas 2010-04-08 06:22:41 +00:00 committed by sambas
parent d3afdf5d54
commit fa822b9a84

View File

@ -140,7 +140,7 @@ void Telemetry::connectToObjectInstances(UAVObject* obj, quint32 eventMask)
}
if ( (eventMask&EV_UPDATE_REQ) != 0)
{
connect(objs[n], SIGNAL(objectUpdateRequested(UAVObject*)), this, SLOT(objectUpdateRequested(UAVObject*)), Qt::QueuedConnection);
connect(objs[n], SIGNAL(updateRequested(UAVObject*)), this, SLOT(updateRequested(UAVObject*)), Qt::QueuedConnection);
}
}
}