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
b9c5c8fc
Commit
b9c5c8fc
authored
Aug 17, 2017
by
Sylvain Berfini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix grammatical error
parent
8485160d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
CallsListModel.cpp
src/components/calls/CallsListModel.cpp
+1
-1
SipAddressesModel.cpp
src/components/sip-addresses/SipAddressesModel.cpp
+1
-1
check_qml_syntax
tools/check_qml_syntax
+1
-1
test_qml
tools/test_qml
+1
-1
No files found.
src/components/calls/CallsListModel.cpp
View file @
b9c5c8fc
...
@@ -249,7 +249,7 @@ void CallsListModel::removeCall (const shared_ptr<linphone::Call> &call) {
...
@@ -249,7 +249,7 @@ void CallsListModel::removeCall (const shared_ptr<linphone::Call> &call) {
}
catch
(
const
out_of_range
&
)
{
}
catch
(
const
out_of_range
&
)
{
// The call model not exists because the linphone call state
// The call model not exists because the linphone call state
// `CallStateIncomingReceived`/`CallStateOutgoingInit` was not notified.
// `CallStateIncomingReceived`/`CallStateOutgoingInit` was not notified.
qWarning
()
<<
QStringLiteral
(
"Unable to f
ou
nd linphone call:"
)
<<
call
.
get
();
qWarning
()
<<
QStringLiteral
(
"Unable to f
i
nd linphone call:"
)
<<
call
.
get
();
return
;
return
;
}
}
...
...
src/components/sip-addresses/SipAddressesModel.cpp
View file @
b9c5c8fc
...
@@ -327,7 +327,7 @@ void SipAddressesModel::handlePresenceReceived (
...
@@ -327,7 +327,7 @@ void SipAddressesModel::handlePresenceReceived (
void
SipAddressesModel
::
handleAllEntriesRemoved
(
const
QString
&
sipAddress
)
{
void
SipAddressesModel
::
handleAllEntriesRemoved
(
const
QString
&
sipAddress
)
{
auto
it
=
mSipAddresses
.
find
(
sipAddress
);
auto
it
=
mSipAddresses
.
find
(
sipAddress
);
if
(
it
==
mSipAddresses
.
end
())
{
if
(
it
==
mSipAddresses
.
end
())
{
qWarning
()
<<
QStringLiteral
(
"Unable to f
ou
nd sip address: `%1`."
).
arg
(
sipAddress
);
qWarning
()
<<
QStringLiteral
(
"Unable to f
i
nd sip address: `%1`."
).
arg
(
sipAddress
);
return
;
return
;
}
}
...
...
tools/check_qml_syntax
View file @
b9c5c8fc
...
@@ -18,7 +18,7 @@ cd $SCRIPT_DIR/..
...
@@ -18,7 +18,7 @@ cd $SCRIPT_DIR/..
# ==============================================================================
# ==============================================================================
if
!
[
-x
"
$(
command
-v
"
$LINTER
"
)
"
]
;
then
if
!
[
-x
"
$(
command
-v
"
$LINTER
"
)
"
]
;
then
printf
"
${
RED
}
Unable to f
ou
nd
`
$LINTER
`
.
${
NC
}
\n
"
printf
"
${
RED
}
Unable to f
i
nd
`
$LINTER
`
.
${
NC
}
\n
"
exit
1
exit
1
fi
fi
...
...
tools/test_qml
View file @
b9c5c8fc
...
@@ -24,7 +24,7 @@ cd $SCRIPT_DIR/..
...
@@ -24,7 +24,7 @@ cd $SCRIPT_DIR/..
# ==============================================================================
# ==============================================================================
if
!
[
-x
"
$(
command
-v
"
$TEST_RUNNER
"
)
"
]
;
then
if
!
[
-x
"
$(
command
-v
"
$TEST_RUNNER
"
)
"
]
;
then
printf
"
${
RED
}
Unable to f
ou
nd
`
$TEST_RUNNER
`
. No tests can be executed.
${
NC
}
\n
"
printf
"
${
RED
}
Unable to f
i
nd
`
$TEST_RUNNER
`
. No tests can be executed.
${
NC
}
\n
"
exit
0
exit
0
fi
fi
...
...
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