Properly mark settings variable functions as override

This commit is contained in:
Dan Paulat 2024-09-29 21:39:44 -05:00
parent a1d9b25f0b
commit 295bbda921

View file

@ -44,7 +44,7 @@ public:
* @return true if the settings variable is currently set to its default * @return true if the settings variable is currently set to its default
* value, otherwise false. * value, otherwise false.
*/ */
bool IsDefault() const; bool IsDefault() const override;
/** /**
* Gets whether or not the settings variable currently has its staged value * Gets whether or not the settings variable currently has its staged value
@ -53,7 +53,7 @@ public:
* @return true if the settings variable currently has its staged value set * @return true if the settings variable currently has its staged value set
* to default, otherwise false. * to default, otherwise false.
*/ */
bool IsDefaultStaged() const; bool IsDefaultStaged() const override;
/** /**
* Gets the current value of the settings variable. * Gets the current value of the settings variable.