diff options
Diffstat (limited to 'linden/indra/newview/llviewerobject.cpp')
-rw-r--r-- | linden/indra/newview/llviewerobject.cpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/linden/indra/newview/llviewerobject.cpp b/linden/indra/newview/llviewerobject.cpp index ca7055a..102b135 100644 --- a/linden/indra/newview/llviewerobject.cpp +++ b/linden/indra/newview/llviewerobject.cpp | |||
@@ -1006,6 +1006,12 @@ U32 LLViewerObject::processUpdateMessage(LLMessageSystem *mesgsys, | |||
1006 | coloru.mV[3] = 255 - coloru.mV[3]; | 1006 | coloru.mV[3] = 255 - coloru.mV[3]; |
1007 | mText->setColor(LLColor4(coloru)); | 1007 | mText->setColor(LLColor4(coloru)); |
1008 | mText->setStringUTF8(temp_string); | 1008 | mText->setStringUTF8(temp_string); |
1009 | // [RLVa:KB] - Checked: 2009-07-09 (RLVa-1.0.0f) | Added: RLVa-1.0.0f | ||
1010 | if (rlv_handler_t::isEnabled()) | ||
1011 | { | ||
1012 | mText->setObjectText(temp_string); | ||
1013 | } | ||
1014 | // [/RLVa:KB] | ||
1009 | 1015 | ||
1010 | if (mDrawable.notNull()) | 1016 | if (mDrawable.notNull()) |
1011 | { | 1017 | { |
@@ -1423,6 +1429,12 @@ U32 LLViewerObject::processUpdateMessage(LLMessageSystem *mesgsys, | |||
1423 | coloru.mV[3] = 255 - coloru.mV[3]; | 1429 | coloru.mV[3] = 255 - coloru.mV[3]; |
1424 | mText->setColor(LLColor4(coloru)); | 1430 | mText->setColor(LLColor4(coloru)); |
1425 | mText->setStringUTF8(temp_string); | 1431 | mText->setStringUTF8(temp_string); |
1432 | // [RLVa:KB] - Version: 1.22.11 | Checked: 2009-07-09 (RLVa-1.0.0f) | Added: RLVa-1.0.0f | ||
1433 | if (rlv_handler_t::isEnabled()) | ||
1434 | { | ||
1435 | mText->setObjectText(temp_string); | ||
1436 | } | ||
1437 | // [/RLVa:KB] | ||
1426 | 1438 | ||
1427 | setChanged(TEXTURE); | 1439 | setChanged(TEXTURE); |
1428 | } | 1440 | } |
@@ -4795,7 +4807,10 @@ BOOL LLViewerObject::permTransfer() const | |||
4795 | // given you modify rights to. JC | 4807 | // given you modify rights to. JC |
4796 | BOOL LLViewerObject::allowOpen() const | 4808 | BOOL LLViewerObject::allowOpen() const |
4797 | { | 4809 | { |
4798 | return !flagInventoryEmpty() && (permYouOwner() || permModify()); | 4810 | // [RLVa:KB] - Checked: 2009-07-04 (RLVa-1.0.0b) |
4811 | return !flagInventoryEmpty() && (permYouOwner() || permModify()) && (!gRlvHandler.hasBehaviour(RLV_BHVR_EDIT)); | ||
4812 | // [/RLVa:KB] | ||
4813 | // return !flagInventoryEmpty() && (permYouOwner() || permModify()); | ||
4799 | } | 4814 | } |
4800 | 4815 | ||
4801 | LLViewerObject::LLInventoryCallbackInfo::~LLInventoryCallbackInfo() | 4816 | LLViewerObject::LLInventoryCallbackInfo::~LLInventoryCallbackInfo() |