diff --git a/src/AutoPilotPlugins/AutoPilotPlugin.h b/src/AutoPilotPlugins/AutoPilotPlugin.h index aab99de0d97d7b328f98d42d8411c60ab7a6849d..e612030d697ed89b8d78f357a38d57983280d585 100644 --- a/src/AutoPilotPlugins/AutoPilotPlugin.h +++ b/src/AutoPilotPlugins/AutoPilotPlugin.h @@ -38,8 +38,8 @@ public: AutoPilotPlugin(Vehicle* vehicle, QObject* parent); ~AutoPilotPlugin(); - Q_PROPERTY(QVariantList vehicleComponents READ vehicleComponents CONSTANT) ///< List of VehicleComponent objects - Q_PROPERTY(bool setupComplete READ setupComplete NOTIFY setupCompleteChanged) ///< false: One or more vehicle components require setup + Q_PROPERTY(QVariantList vehicleComponents READ vehicleComponents NOTIFY vehicleComponentsChanged) ///< List of VehicleComponent objects + Q_PROPERTY(bool setupComplete READ setupComplete NOTIFY setupCompleteChanged) ///< false: One or more vehicle components require setup /// Called when parameters are ready for the first time. Note that parameters may still be missing. /// Overrides must call base class. @@ -56,6 +56,7 @@ public: signals: void setupCompleteChanged(bool setupComplete); + void vehicleComponentsChanged(void); protected: /// All access to AutoPilotPugin objects is through getInstanceForAutoPilotPlugin