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
8b4de96f
Commit
8b4de96f
authored
13 years ago
by
Emmanuel Lepage
Browse files
Options
Downloads
Patches
Plain Diff
[ #7887 ] Fix warning
parent
9e876aea
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
kde/src/AccountView.cpp
+6
-3
6 additions, 3 deletions
kde/src/AccountView.cpp
kde/src/lib/Account.cpp
+3
-3
3 additions, 3 deletions
kde/src/lib/Account.cpp
kde/src/lib/sflphone_const.h
+3
-0
3 additions, 0 deletions
kde/src/lib/sflphone_const.h
with
12 additions
and
6 deletions
kde/src/AccountView.cpp
+
6
−
3
View file @
8b4de96f
...
...
@@ -99,11 +99,14 @@ QColor AccountView::getStateColor()
///Get the color name
const
QString
&
AccountView
::
getStateColorName
()
{
static
const
QString
black
(
"black"
);
static
const
QString
darkGreen
(
"darkGreen"
);
static
const
QString
red
(
"red"
);
if
(
getAccountDetail
(
ACCOUNT_STATUS
)
==
ACCOUNT_STATE_UNREGISTERED
)
return
"
black
"
;
return
black
;
if
(
getAccountDetail
(
ACCOUNT_STATUS
)
==
ACCOUNT_STATE_REGISTERED
||
getAccountDetail
(
ACCOUNT_STATUS
)
==
ACCOUNT_STATE_READY
)
return
"
darkGreen
"
;
return
"
red
"
;
return
darkGreen
;
return
red
;
}
///Is this item checked?
...
...
This diff is collapsed.
Click to expand it.
kde/src/lib/Account.cpp
+
3
−
3
View file @
8b4de96f
...
...
@@ -125,7 +125,7 @@ const QString& Account::getAccountId() const
qDebug
()
<<
"Error : getting AccountId of a new account."
;
if
(
!
m_pAccountId
)
{
qDebug
()
<<
"Account not configured"
;
return
""
;
//WARNING May explode
return
EMPTY_STRING
;
//WARNING May explode
}
return
*
m_pAccountId
;
...
...
@@ -148,13 +148,13 @@ const QString& Account::getAccountDetail(const QString& param) const
{
if
(
!
m_pAccountDetails
)
{
qDebug
()
<<
"The account list is not set"
;
return
NULL
;
//May crash, but better than crashing now
return
EMPTY_STRING
;
//May crash, but better than crashing now
}
if
(
m_pAccountDetails
->
find
(
param
)
!=
m_pAccountDetails
->
end
())
return
(
*
m_pAccountDetails
)[
param
];
else
{
qDebug
()
<<
"Account details not found, there is "
<<
m_pAccountDetails
->
count
()
<<
" details available"
;
return
NULL
;
return
EMPTY_STRING
;
}
}
...
...
This diff is collapsed.
Click to expand it.
kde/src/lib/sflphone_const.h
+
3
−
0
View file @
8b4de96f
...
...
@@ -305,6 +305,9 @@ typedef enum
CALL_STATE_ERROR
=
10
}
call_state
;
static
const
QString
empty
(
""
);
#define EMPTY_STRING empty
/** MIME API */
#define MIME_CALLID "text/sflphone.call.id"
#define MIME_CONTACT "text/sflphone.contact"
...
...
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