Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
workaround for issue #7859
  • Loading branch information
mbernasocchi authored and dakcarto committed Sep 9, 2013
1 parent 17f565a commit 7bc40eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/core/gps/qgsqtlocationconnection.sip
Expand Up @@ -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
Expand Up @@ -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:
Expand Down

0 comments on commit 7bc40eb

Please sign in to comment.