Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
a248284c
Commit
a248284c
authored
9 years ago
by
Emmanuel Lepage Vallee
Browse files
Options
Downloads
Patches
Plain Diff
account: Fix SIP account detection
Refs #70361
parent
d100b1af
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/accountmodel.cpp
+9
-5
9 additions, 5 deletions
src/accountmodel.cpp
with
9 additions
and
5 deletions
src/accountmodel.cpp
+
9
−
5
View file @
a248284c
...
...
@@ -242,7 +242,8 @@ void AccountModelPrivate::slotDaemonAccountChanged(const QString& account, const
emit
q_ptr
->
dataChanged
(
q_ptr
->
index
(
i
,
0
),
q_ptr
->
index
(
q_ptr
->
size
()
-
1
));
emit
q_ptr
->
layoutChanged
();
enabledProtocol
(
acc
->
protocol
());
if
(
acc
->
id
()
!=
DRing
::
Account
::
ProtocolNames
::
IP2IP
)
enableProtocol
(
acc
->
protocol
());
}
}
...
...
@@ -370,7 +371,8 @@ void AccountModel::update()
connect
(
a
,
SIGNAL
(
presenceEnabledChanged
(
bool
)),
d_ptr
,
SLOT
(
slotAccountPresenceEnabledChanged
(
bool
)));
emit
layoutChanged
();
d_ptr
->
enabledProtocol
(
a
->
protocol
());
if
(
a
->
id
()
!=
DRing
::
Account
::
ProtocolNames
::
IP2IP
)
d_ptr
->
enableProtocol
(
a
->
protocol
());
}
}
}
//update
...
...
@@ -394,7 +396,8 @@ void AccountModel::updateAccounts()
connect
(
a
,
SIGNAL
(
presenceEnabledChanged
(
bool
)),
d_ptr
,
SLOT
(
slotAccountPresenceEnabledChanged
(
bool
)));
emit
dataChanged
(
index
(
size
()
-
1
,
0
),
index
(
size
()
-
1
,
0
));
d_ptr
->
enabledProtocol
(
a
->
protocol
());
if
(
a
->
id
()
!=
DRing
::
Account
::
ProtocolNames
::
IP2IP
)
d_ptr
->
enableProtocol
(
a
->
protocol
());
}
else
{
acc
->
performAction
(
Account
::
EditAction
::
RELOAD
);
...
...
@@ -471,7 +474,7 @@ void AccountModel::cancel() {
}
void
AccountModelPrivate
::
enable
d
Protocol
(
Account
::
Protocol
proto
)
void
AccountModelPrivate
::
enableProtocol
(
Account
::
Protocol
proto
)
{
const
bool
cache
=
m_lSupportedProtocols
[
proto
];
...
...
@@ -662,7 +665,8 @@ Account* AccountModel::add(const QString& alias, const Account::Protocol proto)
d_ptr
->
m_pSelectionModel
->
setCurrentIndex
(
index
(
d_ptr
->
m_lAccounts
.
size
()
-
1
,
0
),
QItemSelectionModel
::
ClearAndSelect
);
}
d_ptr
->
enabledProtocol
(
proto
);
if
(
a
->
id
()
!=
DRing
::
Account
::
ProtocolNames
::
IP2IP
)
d_ptr
->
enableProtocol
(
proto
);
return
a
;
}
...
...
This diff is collapsed.
Click to expand it.
Jami Bot
@RingBot
mentioned in commit
a5d526fc
·
6 years ago
mentioned in commit
a5d526fc
mentioned in commit a5d526fcaa847c9d4d9cf8b7aa068b09a0472eec
Toggle commit list
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