Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
d6488379
Commit
d6488379
authored
Apr 15, 2010
by
Alexandre Savard
Browse files
[#3233] Send conferenceChange dbus signal when participant is removed
parent
1379f0ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-common/src/managerimpl.cpp
View file @
d6488379
...
...
@@ -1202,15 +1202,18 @@ void ManagerImpl::removeParticipant (const CallID& call_id) {
ConferenceMap
::
iterator
iter
=
conf_map
.
find
(
call
->
getConfId
());
if
(
iter
==
conf_map
.
end
())
{
_debug
(
"
n
o conference created, cannot remove participant
"
);
_debug
(
"
Manager: Error: N
o conference created, cannot remove participant"
);
}
else
{
conf
=
iter
->
second
;
_debug
(
"
r
emove
P
articipant %s"
,
call_id
.
c_str
());
_debug
(
"
Manager: R
emove
p
articipant %s"
,
call_id
.
c_str
());
conf
->
remove
(
call_id
);
call
->
setConfId
(
""
);
_dbus
->
getCallManager
()
->
conferenceChanged
(
conf
->
getConfID
(),
conf
->
getStateStr
());
}
if
(
_audiodriver
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment