Skip to content

Commit

Permalink
workaround for issue #7859
Browse files Browse the repository at this point in the history
mbernasocchi authored and dakcarto committed Sep 9, 2013
1 parent 17f565a commit 7bc40eb
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/core/gps/qgsqtlocationconnection.sip
Original file line number Diff line number Diff line change
@@ -21,9 +21,9 @@ class QgsQtLocationConnection: QgsGPSConnection
// void positionUpdated( const QGeoPositionInfo &info );

/**Called when the number of satellites in view is updated.*/
void satellitesInViewUpdated( const QList<QGeoSatelliteInfo>& satellites );
// void satellitesInViewUpdated( const QList<QGeoSatelliteInfo>& satellites );

/**Called when the number of satellites in use is updated.*/
void satellitesInUseUpdated( const QList<QGeoSatelliteInfo>& satellites );
// void satellitesInUseUpdated( const QList<QGeoSatelliteInfo>& satellites );
};
%End
8 changes: 6 additions & 2 deletions src/core/gps/qgsqtlocationconnection.h
Original file line number Diff line number Diff line change
@@ -45,10 +45,14 @@ class CORE_EXPORT QgsQtLocationConnection: public QgsGPSConnection
*/
void positionUpdated( const QGeoPositionInfo &info );

/**Called when the number of satellites in view is updated.*/
/**Called when the number of satellites in view is updated.
* @note not available in python binding
*/
void satellitesInViewUpdated( const QList<QGeoSatelliteInfo>& satellites );

/**Called when the number of satellites in use is updated.*/
/**Called when the number of satellites in use is updated.
* @note not available in python binding
*/
void satellitesInUseUpdated( const QList<QGeoSatelliteInfo>& satellites );

private:

0 comments on commit 7bc40eb

Please sign in to comment.