summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Solovev <ivan.solovev@qt.io>2021-03-09 17:25:13 +0100
committerIvan Solovev <ivan.solovev@qt.io>2021-03-10 18:22:34 +0100
commitd89b345b9f018c50060133f909275208b6924816 (patch)
tree2a8c0774fa1b88a7b0ceb8a7b5516654060f3de0
parent0a027b248e5882e85c4eaa8ddcdae923ad3e9ab5 (diff)
downloadqtlocation-d89b345b9f018c50060133f909275208b6924816.tar.gz
QtPositioning: remove duplicated signals from GYPSY plugin
The signal definition in plugin shadows the signals from the base class. This results in incorrect behavior while connecting to signals of the base class (without explicit casting to QGeoSatelliteInfoSourceGypsy). Task-number: QTBUG-91528 Change-Id: I74d045de469eeb13377f934ad9c473ba4c8374e0 Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
-rw-r--r--src/plugins/position/gypsy/qgeosatelliteinfosource_gypsy_p.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/position/gypsy/qgeosatelliteinfosource_gypsy_p.h b/src/plugins/position/gypsy/qgeosatelliteinfosource_gypsy_p.h
index ededf168..f8ff9595 100644
--- a/src/plugins/position/gypsy/qgeosatelliteinfosource_gypsy_p.h
+++ b/src/plugins/position/gypsy/qgeosatelliteinfosource_gypsy_p.h
@@ -114,10 +114,6 @@ public slots:
void requestUpdate(int timeout = 5000) override;
void satellitesChanged(GypsySatellite *satellite, GPtrArray *satellites);
-signals:
- void satellitesInViewUpdated(const QList<QGeoSatelliteInfo> &satellites);
- void satellitesInUseUpdated(const QList<QGeoSatelliteInfo> &satellites);
-
private slots:
void requestUpdateTimeout();