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
c66d5483
Commit
c66d5483
authored
15 years ago
by
Jérémy Quentin
Browse files
Options
Downloads
Patches
Plain Diff
[#1919] Error fixed
[#1886]
parent
5cee703b
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-client-kde/src/conf/dlgaccounts.cpp
+1
-1
1 addition, 1 deletion
sflphone-client-kde/src/conf/dlgaccounts.cpp
sflphone-client-kde/src/conf/dlgaccounts.h
+4
-1
4 additions, 1 deletion
sflphone-client-kde/src/conf/dlgaccounts.h
with
5 additions
and
2 deletions
sflphone-client-kde/src/conf/dlgaccounts.cpp
+
1
−
1
View file @
c66d5483
...
@@ -182,7 +182,7 @@ void DlgAccounts::loadAccount(QListWidgetItem * item)
...
@@ -182,7 +182,7 @@ void DlgAccounts::loadAccount(QListWidgetItem * item)
edit6_mailbox
->
setText
(
account
->
getAccountDetail
(
ACCOUNT_MAILBOX
));
edit6_mailbox
->
setText
(
account
->
getAccountDetail
(
ACCOUNT_MAILBOX
));
checkBox_conformRFC
->
setChecked
(
account
->
getAccountDetail
(
ACCOUNT_RESOLVE_ONCE
)
!=
"TRUE"
);
checkBox_conformRFC
->
setChecked
(
account
->
getAccountDetail
(
ACCOUNT_RESOLVE_ONCE
)
!=
"TRUE"
);
bool
ok
;
bool
ok
;
int
val
=
account
->
getAccountDetail
(
ACCOUNT_EXPIRE
).
toInt
(
ok
);
int
val
=
account
->
getAccountDetail
(
ACCOUNT_EXPIRE
).
toInt
(
&
ok
);
spinbox_regExpire
->
setValue
(
ok
?
val
:
ACCOUNT_EXPIRE_DEFAULT
);
spinbox_regExpire
->
setValue
(
ok
?
val
:
ACCOUNT_EXPIRE_DEFAULT
);
updateStatusLabel
(
account
);
updateStatusLabel
(
account
);
frame2_editAccounts
->
setEnabled
(
true
);
frame2_editAccounts
->
setEnabled
(
true
);
...
...
This diff is collapsed.
Click to expand it.
sflphone-client-kde/src/conf/dlgaccounts.h
+
4
−
1
View file @
c66d5483
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
/**
/**
@author Jérémy Quentin <jeremy.quentin@gmail.com>
@author Jérémy Quentin <jeremy.quentin@gmail.com>
\note see ticket #1309 for advices about how to improve this class.
*/
*/
class
DlgAccounts
:
public
QWidget
,
public
Ui_DlgAccountsBase
class
DlgAccounts
:
public
QWidget
,
public
Ui_DlgAccountsBase
{
{
...
@@ -38,6 +40,7 @@ public:
...
@@ -38,6 +40,7 @@ public:
DlgAccounts
(
KConfigDialog
*
parent
=
0
);
DlgAccounts
(
KConfigDialog
*
parent
=
0
);
void
saveAccount
(
QListWidgetItem
*
item
);
void
saveAccount
(
QListWidgetItem
*
item
);
/**
/**
* Fills the settings form in the right side with the
* Fills the settings form in the right side with the
* settings of @p item.
* settings of @p item.
...
@@ -49,7 +52,7 @@ public:
...
@@ -49,7 +52,7 @@ public:
* is filled with the right default settings if blank (as 600 for
* is filled with the right default settings if blank (as 600 for
* registration expire).
* registration expire).
*
*
* @param item
* @param item
the item with which to fill the settings form
*/
*/
void
loadAccount
(
QListWidgetItem
*
item
);
void
loadAccount
(
QListWidgetItem
*
item
);
...
...
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