diff --git a/src/components/calls/CallsListModel.cpp b/src/components/calls/CallsListModel.cpp index ee2148251..e1588fbfa 100644 --- a/src/components/calls/CallsListModel.cpp +++ b/src/components/calls/CallsListModel.cpp @@ -249,7 +249,7 @@ void CallsListModel::removeCall (const shared_ptr &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; } diff --git a/src/components/sip-addresses/SipAddressesModel.cpp b/src/components/sip-addresses/SipAddressesModel.cpp index 160d2c982..4bd5561e1 100644 --- a/src/components/sip-addresses/SipAddressesModel.cpp +++ b/src/components/sip-addresses/SipAddressesModel.cpp @@ -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; } diff --git a/tools/check_qml_syntax b/tools/check_qml_syntax index df0b0ca35..28a8f35e3 100755 --- a/tools/check_qml_syntax +++ b/tools/check_qml_syntax @@ -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 diff --git a/tools/test_qml b/tools/test_qml index 347f76f68..1a767b321 100755 --- a/tools/test_qml +++ b/tools/test_qml @@ -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