summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2021-01-21 16:02:20 +0100
committerIvan Solovev <ivan.solovev@qt.io>2021-01-25 16:03:18 +0100
commitced5568172ba145cd3e74f77978ab71108347360 (patch)
tree93949e5d702c1d74ddbf76e9ba9ff20d90986bdd /examples
parent8f25a043dae764bb7def1f67ea49595d74eeb1d0 (diff)
downloadqtlocation-ced5568172ba145cd3e74f77978ab71108347360.tar.gz
QtPositioning: rename signal error() to errorOccurred()
Signal name was previouly clashing with the error() method. The new signal name is aligned with QtNetwork and QProcess [ChangeLog][QtPositioning][Important Behavior Changes] Rename signal error() to errorOccurred() in QGeoAreaMonitorSource, QGeoPositionInfoSource and QGeoSatelliteInfoSource Task-number: QTBUG-90491 Change-Id: I241322c6654e1c92e1a3c63a8958bcf96bf5f4f7 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/positioning/satelliteinfo/satellitemodel.cpp2
-rw-r--r--examples/positioning/weatherinfo/appmodel.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/positioning/satelliteinfo/satellitemodel.cpp b/examples/positioning/satelliteinfo/satellitemodel.cpp
index 112fc9c8..373cd604 100644
--- a/examples/positioning/satelliteinfo/satellitemodel.cpp
+++ b/examples/positioning/satelliteinfo/satellitemodel.cpp
@@ -67,7 +67,7 @@ SatelliteModel::SatelliteModel(QObject *parent) :
this, SLOT(satellitesInViewUpdated(QList<QGeoSatelliteInfo>)));
connect(source, SIGNAL(satellitesInUseUpdated(QList<QGeoSatelliteInfo>)),
this, SLOT(satellitesInUseUpdated(QList<QGeoSatelliteInfo>)));
- connect(source, SIGNAL(error(QGeoSatelliteInfoSource::Error)),
+ connect(source, SIGNAL(errorOccurred(QGeoSatelliteInfoSource::Error)),
this, SLOT(error(QGeoSatelliteInfoSource::Error)));
}
diff --git a/examples/positioning/weatherinfo/appmodel.cpp b/examples/positioning/weatherinfo/appmodel.cpp
index 8950bea4..e498da5b 100644
--- a/examples/positioning/weatherinfo/appmodel.cpp
+++ b/examples/positioning/weatherinfo/appmodel.cpp
@@ -229,7 +229,7 @@ AppModel::AppModel(QObject *parent) :
d->useGps = true;
connect(d->src, SIGNAL(positionUpdated(QGeoPositionInfo)),
this, SLOT(positionUpdated(QGeoPositionInfo)));
- connect(d->src, SIGNAL(error(QGeoPositionInfoSource::Error)),
+ connect(d->src, SIGNAL(errorOccurred(QGeoPositionInfoSource::Error)),
this, SLOT(positionError(QGeoPositionInfoSource::Error)));
d->src->startUpdates();
} else {