diff options
author | Graham Madarasz <graham@lindenlab.com> | 2019-05-13 20:57:42 +0000 |
---|---|---|
committer | Graham Madarasz <graham@lindenlab.com> | 2019-05-13 20:57:42 +0000 |
commit | 3f22cc70fbaca742cde583170d5b641f0d817954 (patch) | |
tree | b226fb4c6900c45b0da639f27e86f86586413e69 /indra/newview/llfloaterfixedenvironment.h | |
parent | 5196b7eac970f7f2b451f0cdf10cb4f6f5997a75 (diff) | |
parent | ba7ad1af7222ae39dfc0e0303fdee820636eddf2 (diff) |
Merged in andreykproductengine/maint-eep (pull request #385)
SL-9684 Fixed editor edits environment that was freshly applied from same editor
Approved-by: Maxim Nikolenko <maximnproductengine@lindenlab.com>
Approved-by: Andrey Lihatskiy <andreylproductengine@lindenlab.com>
Diffstat (limited to 'indra/newview/llfloaterfixedenvironment.h')
-rw-r--r-- | indra/newview/llfloaterfixedenvironment.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llfloaterfixedenvironment.h b/indra/newview/llfloaterfixedenvironment.h index f694e59281..138f26cfd7 100644 --- a/indra/newview/llfloaterfixedenvironment.h +++ b/indra/newview/llfloaterfixedenvironment.h @@ -86,9 +86,9 @@ protected: LLSettingsBase::ptr_t mSettings; virtual void doImportFromDisk() = 0; - virtual void doApplyCreateNewInventory(std::string settings_name); - virtual void doApplyUpdateInventory(); - virtual void doApplyEnvironment(const std::string &where); + virtual void doApplyCreateNewInventory(std::string settings_name, const LLSettingsBase::ptr_t &settings); + virtual void doApplyUpdateInventory(const LLSettingsBase::ptr_t &settings); + virtual void doApplyEnvironment(const std::string &where, const LLSettingsBase::ptr_t &settings); void doCloseInventoryFloater(bool quitting = false); bool canUseInventory() const; @@ -116,7 +116,7 @@ protected: void onPanelDirtyFlagChanged(bool); virtual void onClickCloseBtn(bool app_quitting = false) override; - void onSaveAsCommit(const LLSD& notification, const LLSD& response); + void onSaveAsCommit(const LLSD& notification, const LLSD& response, const LLSettingsBase::ptr_t &settings); private: void onNameChanged(const std::string &name); |