fixed cancel function naming
This commit is contained in:
parent
86f0c22864
commit
81ee19819c
3 changed files with 5 additions and 5 deletions
|
@ -101,7 +101,7 @@ public slots:
|
|||
* \return
|
||||
*/
|
||||
virtual int reset();
|
||||
int cancel();
|
||||
virtual int cancel();
|
||||
|
||||
// setters
|
||||
bool writeStartActionSetting(StartAction action, bool enabled, int delay);
|
||||
|
|
|
@ -20,7 +20,7 @@ private:
|
|||
|
||||
public slots:
|
||||
int start();
|
||||
void cancelStart();
|
||||
int cancel();
|
||||
int stop();
|
||||
int reset();
|
||||
bool addTimer(ScStwTimer *timer);
|
||||
|
|
|
@ -38,9 +38,9 @@ int ScStwRemoteMonitorRace::start() {
|
|||
return returnCode;
|
||||
}
|
||||
|
||||
void ScStwRemoteMonitorRace::cancelStart() {
|
||||
this->stop();
|
||||
return;
|
||||
int ScStwRemoteMonitorRace::cancel() {
|
||||
return this->stop();
|
||||
|
||||
}
|
||||
|
||||
int ScStwRemoteMonitorRace::stop() {
|
||||
|
|
Reference in a new issue