mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Fix grammatical error
This commit is contained in:
parent
8485160db7
commit
b9c5c8fc96
4 changed files with 4 additions and 4 deletions
|
|
@ -249,7 +249,7 @@ void CallsListModel::removeCall (const shared_ptr<linphone::Call> &call) {
|
|||
} catch (const out_of_range &) {
|
||||
// The call model not exists because the linphone call state
|
||||
// `CallStateIncomingReceived`/`CallStateOutgoingInit` was not notified.
|
||||
qWarning() << QStringLiteral("Unable to found linphone call:") << call.get();
|
||||
qWarning() << QStringLiteral("Unable to find linphone call:") << call.get();
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -327,7 +327,7 @@ void SipAddressesModel::handlePresenceReceived (
|
|||
void SipAddressesModel::handleAllEntriesRemoved (const QString &sipAddress) {
|
||||
auto it = mSipAddresses.find(sipAddress);
|
||||
if (it == mSipAddresses.end()) {
|
||||
qWarning() << QStringLiteral("Unable to found sip address: `%1`.").arg(sipAddress);
|
||||
qWarning() << QStringLiteral("Unable to find sip address: `%1`.").arg(sipAddress);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ cd $SCRIPT_DIR/..
|
|||
# ==============================================================================
|
||||
|
||||
if ! [ -x "$( command -v "$LINTER" )" ]; then
|
||||
printf "${RED}Unable to found `$LINTER`.${NC}\n"
|
||||
printf "${RED}Unable to find `$LINTER`.${NC}\n"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ cd $SCRIPT_DIR/..
|
|||
# ==============================================================================
|
||||
|
||||
if ! [ -x "$( command -v "$TEST_RUNNER" )" ]; then
|
||||
printf "${RED}Unable to found `$TEST_RUNNER`. No tests can be executed.${NC}\n"
|
||||
printf "${RED}Unable to find `$TEST_RUNNER`. No tests can be executed.${NC}\n"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue