diff options
author | Mike Antipov <mantipov@productengine.com> | 2010-05-26 10:24:05 +0300 |
---|---|---|
committer | Mike Antipov <mantipov@productengine.com> | 2010-05-26 10:24:05 +0300 |
commit | 14418c197076d0eb01bb0852b8716fa966bc9d53 (patch) | |
tree | 3466623f7db960a929a236c7a92fb109c581abdb /indra/llxuixml/llinitparam.h | |
parent | 85b62440ef1127e6f3f5b853374cea51f12c37e0 (diff) | |
parent | 6885a1a6ad62f0e0e08a272911c8ac057a5cd94d (diff) |
Merge from default branch, resolving conflict in indra/newview/llinventorybridge.cpp
LLObjectBridge::openItem() was concurrency modified.
Applied behavior that was changed in c3220f7f7699 according to
VWR-13743 FIXED Change Request: Change double click action for inventory wearables
DEV-33391 FIXED Change Request: Change double click action for inventory wearables
--HG--
branch : product-engine
Diffstat (limited to 'indra/llxuixml/llinitparam.h')
-rw-r--r-- | indra/llxuixml/llinitparam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llxuixml/llinitparam.h b/indra/llxuixml/llinitparam.h index 582f5449d9..b645c4be7c 100644 --- a/indra/llxuixml/llinitparam.h +++ b/indra/llxuixml/llinitparam.h @@ -858,7 +858,7 @@ namespace LLInitParam { const self_t& src_typed_param = static_cast<const self_t&>(src); self_t& dst_typed_param = static_cast<self_t&>(dst); - if (dst_typed_param.T::merge(BaseBlock::selfBlockDescriptor(), src_typed_param, overwrite || !dst_typed_param.isProvided())) + if (dst_typed_param.T::merge(T::selfBlockDescriptor(), src_typed_param, overwrite || !dst_typed_param.isProvided())) { dst_typed_param.mData.clearKey(); return true; |