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
060702e3
Commit
060702e3
authored
Aug 09, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(app): repare build
parent
091227e8
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
Cli.cpp
src/app/cli/Cli.cpp
+1
-1
CallsListModel.cpp
src/components/calls/CallsListModel.cpp
+2
-2
ConferenceAddModel.cpp
src/components/conference/ConferenceAddModel.cpp
+1
-1
VcardModel.cpp
src/components/contact/VcardModel.cpp
+1
-1
No files found.
src/app/cli/Cli.cpp
View file @
060702e3
...
...
@@ -52,7 +52,7 @@ static void cliInitiateConference (QHash<QString, QString> &args) {
// Check identity.
{
shared_ptr
<
linphone
::
Address
>
address
=
core
->
interpret
SipAddress
(
::
Utils
::
appStringToCoreString
(
args
[
"sip-address"
]));
shared_ptr
<
linphone
::
Address
>
address
=
core
->
interpret
Url
(
::
Utils
::
appStringToCoreString
(
args
[
"sip-address"
]));
address
->
clean
();
const
string
sipAddress
=
address
->
asString
();
...
...
src/components/calls/CallsListModel.cpp
View file @
060702e3
...
...
@@ -94,7 +94,7 @@ void CallsListModel::askForTransfer (CallModel *callModel) {
void
CallsListModel
::
launchAudioCall
(
const
QString
&
sipAddress
,
const
QHash
<
QString
,
QString
>
&
headers
)
const
{
shared_ptr
<
linphone
::
Core
>
core
=
CoreManager
::
getInstance
()
->
getCore
();
shared_ptr
<
linphone
::
Address
>
address
=
core
->
interpret
SipAddress
(
::
Utils
::
appStringToCoreString
(
sipAddress
));
shared_ptr
<
linphone
::
Address
>
address
=
core
->
interpret
Url
(
::
Utils
::
appStringToCoreString
(
sipAddress
));
if
(
!
address
)
return
;
...
...
@@ -119,7 +119,7 @@ void CallsListModel::launchVideoCall (const QString &sipAddress) const {
return
;
}
shared_ptr
<
linphone
::
Address
>
address
=
core
->
interpret
SipAddress
(
::
Utils
::
appStringToCoreString
(
sipAddress
));
shared_ptr
<
linphone
::
Address
>
address
=
core
->
interpret
Url
(
::
Utils
::
appStringToCoreString
(
sipAddress
));
if
(
!
address
)
return
;
...
...
src/components/conference/ConferenceAddModel.cpp
View file @
060702e3
...
...
@@ -95,7 +95,7 @@ bool ConferenceHelperModel::ConferenceAddModel::addToConference (const QString &
beginInsertRows
(
QModelIndex
(),
row
,
row
);
qInfo
()
<<
QStringLiteral
(
"Add sip address to conference: `%1`."
).
arg
(
sipAddress
);
shared_ptr
<
linphone
::
Address
>
linphoneAddress
=
CoreManager
::
getInstance
()
->
getCore
()
->
interpret
SipAddress
(
shared_ptr
<
linphone
::
Address
>
linphoneAddress
=
CoreManager
::
getInstance
()
->
getCore
()
->
interpret
Url
(
::
Utils
::
appStringToCoreString
(
sipAddress
)
);
addToConferencePrivate
(
linphoneAddress
);
...
...
src/components/contact/VcardModel.cpp
View file @
060702e3
...
...
@@ -96,7 +96,7 @@ static void removeBelcardPhoto (const shared_ptr<belcard::BelCard> &belcard, boo
static
string
interpretSipAddress
(
const
QString
&
sipAddress
)
{
string
out
;
shared_ptr
<
linphone
::
Address
>
linphoneAddress
=
CoreManager
::
getInstance
()
->
getCore
()
->
interpret
SipAddress
(
shared_ptr
<
linphone
::
Address
>
linphoneAddress
=
CoreManager
::
getInstance
()
->
getCore
()
->
interpret
Url
(
::
Utils
::
appStringToCoreString
(
sipAddress
)
);
...
...
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