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

OP-1150/OP-1068 Fix signal name in wizardmodel

This commit is contained in:
Alessio Morale 2014-01-13 01:48:33 +01:00
parent 39f3d36e09
commit 7cd3e83fbc

View File

@ -31,12 +31,13 @@
#include <QStateMachine>
#include <QQmlListProperty>
#include "wizardstate.h"
#include <accelsensor.h>
class WizardModel : public QStateMachine
{
Q_OBJECT
Q_PROPERTY(QQmlListProperty<QObject> steps READ steps CONSTANT)
Q_PROPERTY(QString instructions READ instructions NOTIFY instructionChanged)
Q_PROPERTY(QString instructions READ instructions NOTIFY instructionsChanged)
Q_PROPERTY(WizardState* currentState READ currentState NOTIFY currentStateChanged)
public:
explicit WizardModel(QObject *parent = 0);
@ -51,7 +52,7 @@ public:
void setInstructions(QString instructions){
m_instructions = instructions;
emit instructionChanged();
emit instructionsChanged(instructions);
}
WizardState *currentState();
protected:
@ -59,8 +60,8 @@ protected:
private:
QString m_instructions;
signals:
void instructionChanged();
void currentStateChanged();
void instructionsChanged(QString status);
void currentStateChanged(WizardState *status);
public slots:
};