Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
e9c7ebf7
Commit
e9c7ebf7
authored
16 years ago
by
Jérémy Quentin
Browse files
Options
Downloads
Patches
Plain Diff
Bug fixed : unholding (UNHOLD_CURRENT, UNHOLD_RECORD)
parent
f56d7d91
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sflphone_kde/Call.cpp
+8
-0
8 additions, 0 deletions
sflphone_kde/Call.cpp
sflphone_kde/sflphone_const.h
+2
-0
2 additions, 0 deletions
sflphone_kde/sflphone_const.h
with
10 additions
and
0 deletions
sflphone_kde/Call.cpp
+
8
−
0
View file @
e9c7ebf7
...
@@ -101,6 +101,14 @@ daemon_call_state Call::toDaemonCallState(const QString & stateName)
...
@@ -101,6 +101,14 @@ daemon_call_state Call::toDaemonCallState(const QString & stateName)
{
{
return
DAEMON_CALL_STATE_CURRENT
;
return
DAEMON_CALL_STATE_CURRENT
;
}
}
if
(
stateName
==
QString
(
CALL_STATE_CHANGE_UNHOLD_CURRENT
))
{
return
DAEMON_CALL_STATE_CURRENT
;
}
if
(
stateName
==
QString
(
CALL_STATE_CHANGE_UNHOLD_RECORD
))
{
return
DAEMON_CALL_STATE_CURRENT
;
}
if
(
stateName
==
QString
(
CALL_STATE_CHANGE_HOLD
))
if
(
stateName
==
QString
(
CALL_STATE_CHANGE_HOLD
))
{
{
return
DAEMON_CALL_STATE_HOLD
;
return
DAEMON_CALL_STATE_HOLD
;
...
...
This diff is collapsed.
Click to expand it.
sflphone_kde/sflphone_const.h
+
2
−
0
View file @
e9c7ebf7
...
@@ -108,6 +108,8 @@
...
@@ -108,6 +108,8 @@
#define CALL_STATE_CHANGE_HOLD "HOLD"
#define CALL_STATE_CHANGE_HOLD "HOLD"
#define CALL_STATE_CHANGE_BUSY "BUSY"
#define CALL_STATE_CHANGE_BUSY "BUSY"
#define CALL_STATE_CHANGE_FAILURE "FAILURE"
#define CALL_STATE_CHANGE_FAILURE "FAILURE"
#define CALL_STATE_CHANGE_UNHOLD_CURRENT "UNHOLD_CURRENT"
#define CALL_STATE_CHANGE_UNHOLD_RECORD "UNHOLD_RECORD"
#define MAX_HISTORY_CAPACITY 60
#define MAX_HISTORY_CAPACITY 60
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment