summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2020-03-23 10:03:47 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2020-03-23 13:04:51 +0100
commitae9a8826d73fa689e81c43038bb13226c9cb9ac7 (patch)
tree28649fd4a54b3e773db999b89a4a1ce61754887c /tests
parentd97b13fc2ccd38dd6d38190722d2207bb26315b5 (diff)
QtLocation: get rid of now unneeded qOverloads
In a preparation for final cleanup in dev/Qt6. This amends the recent change in QtNetwork where we deprecated ambiguous signal overload. Also, fix old SIGNAL to use the proper name. Task-number: QTBUG-82605 Change-Id: Ifc92ce4569ba15ac5429fe379f134a6dbe3a5f73 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/nokia_services/routing/tst_routing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/nokia_services/routing/tst_routing.cpp b/tests/auto/nokia_services/routing/tst_routing.cpp
index 833c95af..fdfdfe0a 100644
--- a/tests/auto/nokia_services/routing/tst_routing.cpp
+++ b/tests/auto/nokia_services/routing/tst_routing.cpp
@@ -103,7 +103,7 @@ void MockGeoNetworkReply::setFile(QFile* file)
void MockGeoNetworkReply::complete()
{
if (error() != QNetworkReply::NoError)
- emit error(error());
+ emit errorOccurred(error());
setFinished(true);
emit finished();
}