Once again, this should have been included in a previous commit, RE renaming compnent state changed events

This commit is contained in:
Nav
2021-05-29 21:39:00 +01:00
parent 77bcf07d6c
commit 1e741d18d7
10 changed files with 36 additions and 37 deletions

View File

@@ -22,7 +22,7 @@ namespace Bloom
SyncSafe<ThreadState> state = SyncSafe<ThreadState>(ThreadState::UNINITIALISED);
protected:
virtual void setState(ThreadState state) {
virtual void setThreadState(ThreadState state) {
this->state.setValue(state);
};
@@ -43,8 +43,8 @@ namespace Bloom
}
public:
virtual ThreadState getState() {
virtual ThreadState getThreadState() {
return this->state.getValue();
};
};
}
}