Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
4c43ae2f
Commit
4c43ae2f
authored
Apr 03, 2017
by
Wescoeur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(app): little fixes
parent
b146db24
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
CoreHandlers.cpp
linphone-desktop/src/components/core/CoreHandlers.cpp
+2
-2
AccountSettingsModel.cpp
...-desktop/src/components/settings/AccountSettingsModel.cpp
+1
-1
No files found.
linphone-desktop/src/components/core/CoreHandlers.cpp
View file @
4c43ae2f
...
...
@@ -70,7 +70,7 @@ void CoreHandlers::onMessageReceived (
void
CoreHandlers
::
onNotifyPresenceReceivedForUriOrTel
(
const
shared_ptr
<
linphone
::
Core
>
&
,
const
shared_ptr
<
linphone
::
Friend
>
&
linphone_friend
,
const
shared_ptr
<
linphone
::
Friend
>
&
,
const
string
&
uri_or_tel
,
const
shared_ptr
<
const
linphone
::
PresenceModel
>
&
presence_model
)
{
...
...
@@ -78,7 +78,7 @@ void CoreHandlers::onNotifyPresenceReceivedForUriOrTel (
}
void
CoreHandlers
::
onNotifyPresenceReceived
(
const
std
::
shared_ptr
<
linphone
::
Core
>
&
core
,
const
std
::
shared_ptr
<
linphone
::
Core
>
&
,
const
std
::
shared_ptr
<
linphone
::
Friend
>
&
linphone_friend
)
{
linphone_friend
->
getData
<
ContactModel
>
(
"contact-model"
).
refreshPresence
();
...
...
linphone-desktop/src/components/settings/AccountSettingsModel.cpp
View file @
4c43ae2f
...
...
@@ -97,7 +97,7 @@ bool AccountSettingsModel::addOrUpdateProxyConfig (
proxy_config
->
setPublishExpires
(
data
[
"registrationDuration"
].
toInt
());
proxy_config
->
setRoute
(
::
Utils
::
qStringToLinphoneString
(
data
[
"route"
].
toString
()));
proxy_config
->
setContactParameters
(
::
Utils
::
qStringToLinphoneString
(
data
[
"contactParams"
].
toString
()));
proxy_config
->
setAvpfRrInterval
(
data
[
"contactParams"
].
toInt
(
));
proxy_config
->
setAvpfRrInterval
(
static_cast
<
uint8_t
>
(
data
[
"avpfInterval"
].
toInt
()
));
proxy_config
->
enableRegister
(
data
[
"registerEnabled"
].
toBool
());
proxy_config
->
enablePublish
(
data
[
"publishEnabled"
].
toBool
());
proxy_config
->
setAvpfMode
(
data
[
"avpfEnabled"
].
toBool
()
...
...
Write
Preview
Markdown
is supported
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