Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
savoirfairelinux
jami-daemon
Commits
9b67a401
Commit
9b67a401
authored
May 09, 2011
by
Alexandre Savard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#5747: Fix off hold action for conferences
parent
34a80c45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
sflphone-client-gnome/src/uimanager.c
sflphone-client-gnome/src/uimanager.c
+4
-3
No files found.
sflphone-client-gnome/src/uimanager.c
View file @
9b67a401
...
...
@@ -540,7 +540,7 @@ call_hold (void* foo UNUSED)
callable_obj_t
*
selectedCall
=
calltab_get_selected_call
(
current_calls
);
conference_obj_t
*
selectedConf
=
calltab_get_selected_conf
();
DEBUG
(
"UIManager: Hold button pressed
(call)
"
);
DEBUG
(
"UIManager: Hold button pressed"
);
if
(
selectedCall
)
{
if
(
selectedCall
->
_state
==
CALL_STATE_HOLD
)
{
...
...
@@ -559,10 +559,11 @@ call_hold (void* foo UNUSED)
break
;
case
CONFERENCE_STATE_ACTIVE_ATACHED
:
case
CONFERENCE_STATE_ACTIVE_DETACHED
:
{
case
CONFERENCE_STATE_ACTIVE_DETACHED
:
case
CONFERENCE_STATE_ACTIVE_ATTACHED_RECORD
:
case
CONFERENCE_STATE_ACTIVE_DETACHED_RECORD
:
selectedConf
->
_state
=
CONFERENCE_STATE_HOLD
;
sflphone_conference_on_hold
(
selectedConf
);
}
break
;
default:
break
;
...
...
Write
Preview
Markdown
is supported
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