Skip to content

Commit b49dda6

Browse files
committed
sip documentation fix
1 parent 74e7314 commit b49dda6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

python/core/gps/qgsqtlocationconnection.sip

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ class QgsQtLocationConnection: QgsGPSConnection
2424

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

3131
/**Called when the number of satellites in use is updated.
32-
* @note only available in python bindings on android
32+
* @note not available in python bindings on android
3333
*/
3434
void satellitesInUseUpdated( const QList<QGeoSatelliteInfo>& satellites );
3535
%End

python/core/qgsclipper.sip

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ class QgsClipper
3434
// A handy way to refer to the four boundaries
3535
enum Boundary {XMax, XMin, YMax, YMin};
3636

37+
%If (!ANDROID)
3738
// Trims the given feature to a rectangular box. Returns the trimmed
3839
// feature in x and y. The shapeOpen parameter determines whether
3940
// the function treats the points as a closed shape (polygon), or as
4041
// an open shape (linestring).
4142
//
42-
// @note python binding only available on android
43-
%If (!ANDROID)
43+
// @note not available in python bindings on android
4444
static void trimFeature( QVector<double>& x,
4545
QVector<double>& y,
4646
bool shapeOpen );

src/core/gps/qgsqtlocationconnection.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ class CORE_EXPORT QgsQtLocationConnection: public QgsGPSConnection
4646
void positionUpdated( const QGeoPositionInfo &info );
4747

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

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

src/core/qgsclipper.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class CORE_EXPORT QgsClipper
7373
// the function treats the points as a closed shape (polygon), or as
7474
// an open shape (linestring).
7575
//
76-
// @note python binding only available on android
76+
// @note not available in python bindings on android
7777
static void trimFeature( QVector<double>& x,
7878
QVector<double>& y,
7979
bool shapeOpen );

0 commit comments

Comments
 (0)