diff options
author | Eugene Mutavchi <emutavchi@productengine.com> | 2009-11-06 16:01:11 +0200 |
---|---|---|
committer | Eugene Mutavchi <emutavchi@productengine.com> | 2009-11-06 16:01:11 +0200 |
commit | 4b804902229f610156920333dfb18f2f3fabf12b (patch) | |
tree | 0a95fb1f9b6bbafa524474e25404a1414443a52f /indra/newview/llspeakers.h | |
parent | ddb42652e3205a96289ad4ac8031a022cce46c4a (diff) |
Fixed low bug EXT-2109 (Add moderator label if user is a moderator of a group chat(See old communication floater))
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llspeakers.h')
-rw-r--r-- | indra/newview/llspeakers.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llspeakers.h b/indra/newview/llspeakers.h index e0f22bff4f..04046a8587 100644 --- a/indra/newview/llspeakers.h +++ b/indra/newview/llspeakers.h @@ -84,6 +84,16 @@ public: BOOL mModeratorMutedText; }; +class LLSpeakerUpdateModeratorEvent : public LLOldEvents::LLEvent +{ +public: + LLSpeakerUpdateModeratorEvent(LLSpeaker* source); + /*virtual*/ LLSD getValue(); +private: + const LLUUID& mSpeakerID; + BOOL mIsModerator; +}; + class LLSpeakerTextModerationEvent : public LLOldEvents::LLEvent { public: |