diff options
author | Merov Linden <merov@lindenlab.com> | 2014-06-03 19:46:33 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-06-03 19:46:33 -0700 |
commit | 86d75052f65149da6bbe1ade5ea28b6f01aaba17 (patch) | |
tree | f370706050f60f04273a28d2bf733d80c74e6523 /indra/newview/llinventorymodel.cpp | |
parent | d5cd32a2a82473d504c04b00eb105290e5d61d08 (diff) |
DD-84 : Fix all active listing modification actions. Add specific message when listing will unlist. Make update skip consistency check when called from internal level (not public API).
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rwxr-xr-x | indra/newview/llinventorymodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index 8f8ea8e602..110f514017 100755 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -1537,11 +1537,11 @@ void LLInventoryModel::addChangedMask(U32 mask, const LLUUID& referent) } } - mModifyMask |= mask; + mModifyMask |= mask; if (referent.notNull() && (mChangedItemIDs.find(referent) == mChangedItemIDs.end())) { mChangedItemIDs.insert(referent); - update_marketplace_category(referent); + update_marketplace_category(referent, true); if (mask & LLInventoryObserver::ADD) { |