diff options
| author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-09-26 20:33:26 +0300 | 
|---|---|---|
| committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-09-26 20:33:26 +0300 | 
| commit | 2d5fa7a732661f97b028ddcbabdd4fb3ba825a52 (patch) | |
| tree | 0b0ca9e5c3f1dbd96225c4bd39eb4970df03da19 | |
| parent | 2c25b7dcc37adacb51d30bbfc741ec0690156f5e (diff) | |
SL-1825 EEP - default description should be empty
| -rw-r--r-- | indra/newview/llsettingsvo.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llsettingsvo.cpp b/indra/newview/llsettingsvo.cpp index 26b0bcb5a3..8d66004ddb 100644 --- a/indra/newview/llsettingsvo.cpp +++ b/indra/newview/llsettingsvo.cpp @@ -114,7 +114,7 @@ void LLSettingsVOBase::createNewInventoryItem(LLSettingsType::type_e stype, cons      create_inventory_settings(gAgent.getID(), gAgent.getSessionID(),          parent_id, LLTransactionID::tnull, -        LLSettingsType::getDefaultName(stype), "new settings collection.", +        LLSettingsType::getDefaultName(stype), "",          stype, nextOwnerPerm, cb);  } @@ -143,7 +143,7 @@ void LLSettingsVOBase::createInventoryItem(const LLSettingsBase::ptr_t &settings      }      create_inventory_settings(gAgent.getID(), gAgent.getSessionID(),          parent_id, tid, -        settings_name, "new settings collection.", +        settings_name, "",          settings->getSettingsTypeValue(), nextOwnerPerm, cb);  } | 
