QNI: iOS: Fix copy-pasted warning messages

Change-Id: Id2b3ff8857a4f86ec88a0f4a8d08a227e145ae4d
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
This commit is contained in:
Mårten Nordheim 2021-10-29 11:23:29 +00:00
parent 77b99e8111
commit 85a6a5bfe1

View File

@ -327,12 +327,12 @@ bool QNetworkConnectionMonitor::isWwan() const
Q_D(const QNetworkConnectionMonitor);
if (isMonitoring()) {
qCWarning(lcNetMon, "Calling isReachable() is unsafe after the monitoring started");
qCWarning(lcNetMon, "Calling isWwan() is unsafe after the monitoring started");
return false;
}
if (!d->probe) {
qCWarning(lcNetMon, "Reachability is unknown, set the target first");
qCWarning(lcNetMon, "Medium is unknown, set the target first");
return false;
}