Commit 2e496e92 authored by Don Gagne's avatar Don Gagne

Remove signal overrides

parent 330d3eb3
......@@ -42,8 +42,8 @@ class MockUAS : public UASInterface
signals:
// The following UASInterface signals are supported
void parameterChanged(int uas, int component, QString parameterName, QVariant value);
void remoteControlChannelRawChanged(int channelId, float raw);
// void parameterChanged(int uas, int component, QString parameterName, QVariant value);
// void remoteControlChannelRawChanged(int channelId, float raw);
public:
// Implemented UASInterface overrides
......
......@@ -39,11 +39,11 @@ class MockUASManager : public UASManagerInterface
Q_OBJECT
signals:
// The following signals from UASManager interface are supported
void activeUASSet(UASInterface* UAS);
void activeUASSet(int systemId);
void activeUASStatusChanged(UASInterface* UAS, bool active);
void activeUASStatusChanged(int systemId, bool active);
// The following signals from UASManager interface are supported:
// void activeUASSet(UASInterface* UAS);
// void activeUASSet(int systemId);
// void activeUASStatusChanged(UASInterface* UAS, bool active);
// void activeUASStatusChanged(int systemId, bool active);
public:
// Implemented UASManagerInterface overrides
......
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