diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llviewermenu.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp index a22f704..0d34f18 100644 --- a/linden/indra/newview/llviewermenu.cpp +++ b/linden/indra/newview/llviewermenu.cpp | |||
@@ -39,7 +39,7 @@ | |||
39 | #include <fstream> | 39 | #include <fstream> |
40 | #include <sstream> | 40 | #include <sstream> |
41 | 41 | ||
42 | // linden library includes | 42 | // viewer library includes |
43 | #include "llaudioengine.h" | 43 | #include "llaudioengine.h" |
44 | #include "llavatarnamecache.h" | 44 | #include "llavatarnamecache.h" |
45 | #include "indra_constants.h" | 45 | #include "indra_constants.h" |
@@ -1544,7 +1544,7 @@ void init_server_menu(LLMenuGL* menu) | |||
1544 | sub->append(new LLMenuItemCallGL("Owner To Me", | 1544 | sub->append(new LLMenuItemCallGL("Owner To Me", |
1545 | &handle_force_parcel_owner_to_me, | 1545 | &handle_force_parcel_owner_to_me, |
1546 | &enable_god_customer_service, NULL)); | 1546 | &enable_god_customer_service, NULL)); |
1547 | sub->append(new LLMenuItemCallGL("Set to Linden Content", | 1547 | sub->append(new LLMenuItemCallGL("Set to grid Content", |
1548 | &handle_force_parcel_to_content, | 1548 | &handle_force_parcel_to_content, |
1549 | &enable_god_customer_service, NULL, | 1549 | &enable_god_customer_service, NULL, |
1550 | 'C', MASK_SHIFT | MASK_ALT | MASK_CONTROL)); | 1550 | 'C', MASK_SHIFT | MASK_ALT | MASK_CONTROL)); |
@@ -2360,9 +2360,9 @@ class LLObjectEnableMute : public view_listener_t | |||
2360 | { | 2360 | { |
2361 | // It's an avatar | 2361 | // It's an avatar |
2362 | LLNameValue *lastname = avatar->getNVPair("LastName"); | 2362 | LLNameValue *lastname = avatar->getNVPair("LastName"); |
2363 | BOOL is_linden = lastname && !LLStringUtil::compareStrings(lastname->getString(), "Linden"); | 2363 | BOOL is_god = lastname && !LLStringUtil::compareStrings(lastname->getString(), "Meta"); |
2364 | BOOL is_self = avatar->isSelf(); | 2364 | BOOL is_self = avatar->isSelf(); |
2365 | new_value = !is_linden && !is_self; | 2365 | new_value = !is_god && !is_self; |
2366 | // [RLVa:KB] - Checked: 2009-07-08 (RLVa-1.0.0e) | 2366 | // [RLVa:KB] - Checked: 2009-07-08 (RLVa-1.0.0e) |
2367 | new_value &= (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES)); | 2367 | new_value &= (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES)); |
2368 | // [/RLVa:KB] | 2368 | // [/RLVa:KB] |