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
936bc398
Commit
936bc398
authored
Feb 03, 2009
by
alexandresavard
Browse files
Fix call_icon GTK client
parent
a3f51710
Changes
2
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/actions.c
View file @
936bc398
...
...
@@ -387,6 +387,16 @@ sflphone_current( call_t * c )
update_menus
();
}
void
sflphone_record
(
call_t
*
c
)
{
if
(
c
->
state
!=
CALL_STATE_HOLD
)
(
void
)
time
(
&
c
->
_start
);
c
->
state
=
CALL_STATE_RECORD
;
update_call_tree
(
current_calls
,
c
);
update_menus
();
}
void
sflphone_set_transfert
()
{
...
...
sflphone-gtk/src/dbus.c
View file @
936bc398
...
...
@@ -115,10 +115,14 @@ call_state_cb (DBusGProxy *proxy UNUSED,
sflphone_hung_up
(
c
);
update_call_tree
(
history
,
c
);
}
else
if
(
strcmp
(
state
,
"UNHOLD"
)
==
0
)
else
if
(
strcmp
(
state
,
"UNHOLD
_CURRENT
"
)
==
0
)
{
sflphone_current
(
c
);
}
else
if
(
strcmp
(
state
,
"UNHOLD_RECORD"
)
==
0
)
{
sflphone_record
(
c
);
}
else
if
(
strcmp
(
state
,
"HOLD"
)
==
0
)
{
sflphone_hold
(
c
);
...
...
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