Skip to content

Commit

Permalink
sip documentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jan 27, 2014
1 parent 74e7314 commit b49dda6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions python/core/gps/qgsqtlocationconnection.sip
Expand Up @@ -24,12 +24,12 @@ class QgsQtLocationConnection: QgsGPSConnection

%If (!ANDROID)
/**Called when the number of satellites in view is updated.
* @note only available in python bindings on android
* @note not available in python bindings on android
*/
void satellitesInViewUpdated( const QList<QGeoSatelliteInfo>& satellites );

/**Called when the number of satellites in use is updated.
* @note only available in python bindings on android
* @note not available in python bindings on android
*/
void satellitesInUseUpdated( const QList<QGeoSatelliteInfo>& satellites );
%End
Expand Down
4 changes: 2 additions & 2 deletions python/core/qgsclipper.sip
Expand Up @@ -34,13 +34,13 @@ class QgsClipper
// A handy way to refer to the four boundaries
enum Boundary {XMax, XMin, YMax, YMin};

%If (!ANDROID)
// Trims the given feature to a rectangular box. Returns the trimmed
// feature in x and y. The shapeOpen parameter determines whether
// the function treats the points as a closed shape (polygon), or as
// an open shape (linestring).
//
// @note python binding only available on android
%If (!ANDROID)
// @note not available in python bindings on android
static void trimFeature( QVector<double>& x,
QVector<double>& y,
bool shapeOpen );
Expand Down
4 changes: 2 additions & 2 deletions src/core/gps/qgsqtlocationconnection.h
Expand Up @@ -46,12 +46,12 @@ class CORE_EXPORT QgsQtLocationConnection: public QgsGPSConnection
void positionUpdated( const QGeoPositionInfo &info );

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

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

Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsclipper.h
Expand Up @@ -73,7 +73,7 @@ class CORE_EXPORT QgsClipper
// the function treats the points as a closed shape (polygon), or as
// an open shape (linestring).
//
// @note python binding only available on android
// @note not available in python bindings on android
static void trimFeature( QVector<double>& x,
QVector<double>& y,
bool shapeOpen );
Expand Down

0 comments on commit b49dda6

Please sign in to comment.