Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Ziegler and Natenom <natenom@googlemail.com>2010-08-28 18:50:01 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2010-08-28 19:42:33 +0400
commit4f1ff200d36f985b438fed19f30582b4a90be81c (patch)
tree87d01619378c957c9f6b632c85237e58b0163d95 /src/murmur/MurmurIce.cpp
parent71e90290cc1c43e21388805d0db21b3d578b1e96 (diff)
This patch adds a read-only recording flag to the User object that is returned by getState() over Ice. Polished by Svedrin (Michael Ziegler <diese-addy@funzt-halt.net>)
Diffstat (limited to 'src/murmur/MurmurIce.cpp')
-rw-r--r--src/murmur/MurmurIce.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/murmur/MurmurIce.cpp b/src/murmur/MurmurIce.cpp
index 41fae678b..08a97c9c7 100644
--- a/src/murmur/MurmurIce.cpp
+++ b/src/murmur/MurmurIce.cpp
@@ -74,6 +74,7 @@ static void userToUser(const ::User *p, Murmur::User &mp) {
mp.mute = p->bMute;
mp.deaf = p->bDeaf;
mp.suppress = p->bSuppress;
+ mp.recording = p->bRecording;
mp.prioritySpeaker = p->bPrioritySpeaker;
mp.selfMute = p->bSelfMute;
mp.selfDeaf = p->bSelfDeaf;