diff options
author | Ivan Solovev <ivan.solovev@qt.io> | 2021-01-21 16:02:20 +0100 |
---|---|---|
committer | Ivan Solovev <ivan.solovev@qt.io> | 2021-01-25 16:03:18 +0100 |
commit | ced5568172ba145cd3e74f77978ab71108347360 (patch) | |
tree | 93949e5d702c1d74ddbf76e9ba9ff20d90986bdd /examples/positioning/satelliteinfo | |
parent | 8f25a043dae764bb7def1f67ea49595d74eeb1d0 (diff) | |
download | qtlocation-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/positioning/satelliteinfo')
-rw-r--r-- | examples/positioning/satelliteinfo/satellitemodel.cpp | 2 |
1 files changed, 1 insertions, 1 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))); } |