diff options
| -rw-r--r-- | indra/newview/llparticipantlist.cpp | 3 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/menu_participant_list.xml | 16 | 
2 files changed, 8 insertions, 11 deletions
diff --git a/indra/newview/llparticipantlist.cpp b/indra/newview/llparticipantlist.cpp index 21b40e25a0..8155766b49 100644 --- a/indra/newview/llparticipantlist.cpp +++ b/indra/newview/llparticipantlist.cpp @@ -32,9 +32,6 @@  #include "llviewerprecompiledheaders.h" -#include "llmenugl.h" -#include "lluictrlfactory.h" -  // common includes  #include "lltrans.h"  #include "llavataractions.h" diff --git a/indra/newview/skins/default/xui/en/menu_participant_list.xml b/indra/newview/skins/default/xui/en/menu_participant_list.xml index 802064992e..c3283c6014 100644 --- a/indra/newview/skins/default/xui/en/menu_participant_list.xml +++ b/indra/newview/skins/default/xui/en/menu_participant_list.xml @@ -6,12 +6,12 @@       label="Mute Text"       layout="topleft"       name="MuteText"> -        <menu_item_check.on_click -         function="ParticipantList.ToggleMuteText" /> -        <menu_item_check.on_check +        <on_check           function="ParticipantList.CheckItem"           parameter="is_muted" /> -        <menu_item_check.on_enable +        <on_click +         function="ParticipantList.ToggleMuteText" /> +        <on_enable           function="ParticipantList.EnableItem"           parameter="can_mute_text" />      </menu_item_check> @@ -19,12 +19,12 @@       label="Allow text chat"       layout="topleft"       name="AllowTextChat"> -        <menu_item_check.on_click -         function="ParticipantList.ToggleAllowTextChat" /> -        <menu_item_check.on_check +        <on_check           function="ParticipantList.CheckItem"           parameter="is_allowed_text_chat" /> -        <menu_item_check.on_enable +        <on_click +         function="ParticipantList.ToggleAllowTextChat" /> +        <on_enable           function="ParticipantList.EnableItem"           parameter="can_allow_text_chat" />      </menu_item_check>  | 
