minor fix
This commit is contained in:
parent
1f6ecd3319
commit
c75bbc2c65
2 changed files with 4 additions and 5 deletions
|
@ -94,24 +94,24 @@ public slots:
|
|||
*
|
||||
* \return 200: OK; 904: state not matching
|
||||
*/
|
||||
int stop();
|
||||
virtual int stop();
|
||||
|
||||
/*!
|
||||
* \brief Function to reset a stopped race
|
||||
* \return
|
||||
*/
|
||||
int reset();
|
||||
virtual int reset();
|
||||
int cancel();
|
||||
|
||||
// setters
|
||||
bool writeStartActionSetting(StartAction action, bool enabled, int delay);
|
||||
bool setSoundVolume(double volume);
|
||||
bool addTimer(ScStwTimer *timer);
|
||||
virtual bool addTimer(ScStwTimer *timer);
|
||||
|
||||
// getters
|
||||
RaceState getState();
|
||||
StartAction getNextStartAction();
|
||||
QVariantList getNextStartActionDetails();
|
||||
virtual QVariantList getNextStartActionDetails();
|
||||
QVariantList getTimerDetailList();
|
||||
|
||||
protected slots:
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
class ScStwRemoteMonitorRace : public ScStwRace
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(QVariantList nextStartActionDetails READ getNextStartActionDetails NOTIFY nextStartActionDetailsChanged)
|
||||
public:
|
||||
ScStwRemoteMonitorRace(ScStwClient *monitorClient, QObject *parent = nullptr);
|
||||
|
||||
|
|
Reference in a new issue