const bool fixes, remove override define

Former-commit-id: 72256e77a5
This commit is contained in:
2023-02-05 23:21:28 -08:00
parent f29f76abb5
commit 38b824cda0
296 changed files with 1192 additions and 1199 deletions

View File

@@ -5,13 +5,13 @@
class CGuiGroup : public CGuiCompoundWidget {
public:
FourCC GetWidgetTypeID() const override { return 'GRUP'; }
FourCC GetWidgetTypeID() const { return 'GRUP'; }
void SelectWorkerWidget(int workerId, bool setActive, bool setVisible);
CGuiWidget* GetSelectedWidget();
const CGuiWidget* GetSelectedWidget() const;
bool AddWorkerWidget(CGuiWidget* worker) override;
void OnActivate() override;
bool AddWorkerWidget(CGuiWidget* worker);
void OnActivate();
private:
uint xb8_workerCount;