summaryrefslogtreecommitdiff
path: root/indra/llinventory
diff options
context:
space:
mode:
authorGraham Linden <graham@lindenlab.com>2018-08-15 21:34:06 +0100
committerGraham Linden <graham@lindenlab.com>2018-08-15 21:34:06 +0100
commitc5b0d4ccd074b7062e5100c3b021da53170eb30c (patch)
tree6600bff8fd4d7f8af3f8d7929c511fbe3d6dc533 /indra/llinventory
parentec0fe8078c1f64c1579f382a686282ddbb82f470 (diff)
parentf028ddd0754d5a2fd2f2300aa02eff4fe6cfa96f (diff)
Merge
Diffstat (limited to 'indra/llinventory')
-rw-r--r--indra/llinventory/llsettingsdaycycle.cpp7
-rw-r--r--indra/llinventory/llsettingsdaycycle.h1
2 files changed, 2 insertions, 6 deletions
diff --git a/indra/llinventory/llsettingsdaycycle.cpp b/indra/llinventory/llsettingsdaycycle.cpp
index ea57c8987f..4a99be0c4b 100644
--- a/indra/llinventory/llsettingsdaycycle.cpp
+++ b/indra/llinventory/llsettingsdaycycle.cpp
@@ -366,12 +366,7 @@ bool LLSettingsDay::initialize(bool validate_frames)
}
}
}
-
- // Build clone since:
- // - can use settings from "used" multiple times
- // - settings can reuse LLSDs they were initialized from
- // - LLSDs are 'smart' and can reuse them self multiple times
- mDayTracks[i][keyframe] = setting->buildDerivedClone();
+ mDayTracks[i][keyframe] = setting;
}
}
}
diff --git a/indra/llinventory/llsettingsdaycycle.h b/indra/llinventory/llsettingsdaycycle.h
index 974ca8660d..0ee5ce3e0b 100644
--- a/indra/llinventory/llsettingsdaycycle.h
+++ b/indra/llinventory/llsettingsdaycycle.h
@@ -81,6 +81,7 @@ public:
bool initialize(bool validate_frames = false);
virtual ptr_t buildClone() = 0;
+ virtual ptr_t buildDeepCloneAndUncompress() = 0;
virtual LLSD getSettings() const SETTINGS_OVERRIDE;
virtual LLSettingsType::type_e getSettingsTypeValue() const SETTINGS_OVERRIDE { return LLSettingsType::ST_DAYCYCLE; }