X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8582d7dfe21e7225d4a715501d70c2649268228f..bc6cac0e474dfe2feb4983aef98f99e23a98ffc4:/projects/stargazer/user_impl.h diff --git a/projects/stargazer/user_impl.h b/projects/stargazer/user_impl.h index 2e254d63..4beeb2e2 100644 --- a/projects/stargazer/user_impl.h +++ b/projects/stargazer/user_impl.h @@ -54,7 +54,7 @@ class SettingsImpl; class CHG_PASSIVE_NOTIFIER : public PropertyNotifierBase { public: explicit CHG_PASSIVE_NOTIFIER(UserImpl * u) : user(u) {} - void Notify(const int & oldPassive, const int & newPassive); + void notify(const int & oldPassive, const int & newPassive) override; private: UserImpl * user; @@ -63,7 +63,7 @@ class CHG_PASSIVE_NOTIFIER : public PropertyNotifierBase { class CHG_DISABLED_NOTIFIER : public PropertyNotifierBase { public: explicit CHG_DISABLED_NOTIFIER(UserImpl * u) : user(u) {} - void Notify(const int & oldValue, const int & newValue); + void notify(const int & oldValue, const int & newValue) override; private: UserImpl * user; @@ -72,7 +72,7 @@ private: class CHG_TARIFF_NOTIFIER : public PropertyNotifierBase { public: explicit CHG_TARIFF_NOTIFIER(UserImpl * u) : user(u) {} - void Notify(const std::string & oldTariff, const std::string & newTariff); + void notify(const std::string & oldTariff, const std::string & newTariff) override; private: UserImpl * user; @@ -81,7 +81,7 @@ private: class CHG_CASH_NOTIFIER : public PropertyNotifierBase { public: explicit CHG_CASH_NOTIFIER(UserImpl * u) : user(u) {} - void Notify(const double & oldCash, const double & newCash); + void notify(const double & oldCash, const double & newCash) override; private: UserImpl * user; @@ -90,7 +90,7 @@ private: class CHG_IPS_NOTIFIER : public PropertyNotifierBase { public: explicit CHG_IPS_NOTIFIER(UserImpl * u) : user(u) {} - void Notify(const UserIPs & oldIPs, const UserIPs & newIPs); + void notify(const UserIPs & oldIPs, const UserIPs & newIPs) override; private: UserImpl * user;