summaryrefslogtreecommitdiff
path: root/indra/llinventory/llsettingsdaycycle.h
diff options
context:
space:
mode:
authorGraham Linden graham@lindenlab.com <Graham Linden graham@lindenlab.com>2018-02-28 21:57:19 +0000
committerGraham Linden graham@lindenlab.com <Graham Linden graham@lindenlab.com>2018-02-28 21:57:19 +0000
commitccdf55f4abdbe4ef0944f8c28216d78e259e3cf0 (patch)
tree67276eddc55fd54ab4e523716d0b7033ab9cbfad /indra/llinventory/llsettingsdaycycle.h
parentaba5777d747d67db43e03772d30cb50d18d1a5d5 (diff)
parent5621fa48537100d70e8d06b00b6c2577f5c11140 (diff)
Merge
Diffstat (limited to 'indra/llinventory/llsettingsdaycycle.h')
-rw-r--r--indra/llinventory/llsettingsdaycycle.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llinventory/llsettingsdaycycle.h b/indra/llinventory/llsettingsdaycycle.h
index 7703f7a0b4..2d0fa4a840 100644
--- a/indra/llinventory/llsettingsdaycycle.h
+++ b/indra/llinventory/llsettingsdaycycle.h
@@ -71,15 +71,15 @@ public:
bool initialize();
virtual ptr_t buildClone() = 0;
- virtual LLSD getSettings() const;
+ virtual LLSD getSettings() const override;
virtual LLSettingsType getSettingTypeValue() const override { return LLSettingsType::ST_DAYCYCLE; }
//---------------------------------------------------------------------
- virtual std::string getSettingType() const { return std::string("daycycle"); }
+ virtual std::string getSettingType() const override { return std::string("daycycle"); }
// Settings status
- virtual void blend(const LLSettingsBase::ptr_t &other, F64 mix);
+ virtual void blend(const LLSettingsBase::ptr_t &other, F64 mix) override;
static LLSD defaults();
@@ -104,13 +104,13 @@ public:
void setInitialized(bool value = true) { mInitialized = value; }
CycleTrack_t & getCycleTrack(S32 track);
- virtual validation_list_t getValidationList() const;
+ virtual validation_list_t getValidationList() const override;
static validation_list_t validationList();
protected:
LLSettingsDay();
- virtual void updateSettings();
+ virtual void updateSettings() override;
bool mInitialized;