Skip to content

Commit 9ceb5ce

Browse files
committedNov 21, 2014
sip sync
1 parent c94b9f3 commit 9ceb5ce

File tree

82 files changed

+397
-815
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+397
-815
lines changed
 

‎python/analysis/vector/qgsgeometryanalyzer.sip

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class QgsGeometryAnalyzer
1717
@param tolerance (level of simplification)
1818
@param onlySelectedFeatures if true, only selected features are considered, else all the features
1919
@param p progress dialog (or 0 if no progress dialog is to be shown)
20-
@note: added in version 1.4*/
20+
*/
2121
bool simplify( QgsVectorLayer* layer, const QString& shapefileName, double tolerance,
2222
bool onlySelectedFeatures = false, QProgressDialog* p = 0 );
2323

@@ -27,7 +27,7 @@ class QgsGeometryAnalyzer
2727
@param shapefileName path to the output shp
2828
@param onlySelectedFeatures if true, only selected features are considered, else all the features
2929
@param p progress dialog (or 0 if no progress dialog is to be shown)
30-
@note: added in version 1.4*/
30+
*/
3131
bool centroids( QgsVectorLayer* layer, const QString& shapefileName,
3232
bool onlySelectedFeatures = false, QProgressDialog* p = 0 );
3333

@@ -36,7 +36,7 @@ class QgsGeometryAnalyzer
3636
@param shapefileName path to the output shp
3737
@param onlySelectedFeatures if true, only selected features are considered, else all the features
3838
@param p progress dialog (or 0 if no progress dialog is to be shown)
39-
@note: added in version 1.4*/
39+
*/
4040
bool extent( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false, QProgressDialog* p = 0 );
4141

4242
/**Create buffers for a vector layer and write it to a new shape file
@@ -47,7 +47,7 @@ class QgsGeometryAnalyzer
4747
@param dissolve if true, merge all the buffers to a big multipolygon
4848
@param bufferDistanceField index of the attribute field that contains the buffer distance (or -1 if all features have the same buffer distance)
4949
@param p progress dialog (or 0 if no progress dialog is to be shown)
50-
@note: added in version 1.3*/
50+
*/
5151
bool buffer( QgsVectorLayer* layer, const QString& shapefileName, double bufferDistance,
5252
bool onlySelectedFeatures = false, bool dissolve = false, int bufferDistanceField = -1, QProgressDialog* p = 0 );
5353

@@ -58,7 +58,7 @@ class QgsGeometryAnalyzer
5858
@param uniqueIdField index of the attribute field that contains the unique convex hull id (or -1 if
5959
all features have the same buffer distance)
6060
@param p progress dialog (or 0 if no progress dialog is to be shown)
61-
@note: added in version 1.4*/
61+
*/
6262
bool convexHull( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false,
6363
int uniqueIdField = -1, QProgressDialog* p = 0 );
6464

@@ -69,7 +69,7 @@ class QgsGeometryAnalyzer
6969
@param uniqueIdField index of the attribute field that contains the unique id to dissolve on (or -1 if
7070
all features should be dissolved together)
7171
@param p progress dialog (or 0 if no progress dialog is to be shown)
72-
@note: added in version 1.4*/
72+
*/
7373
bool dissolve( QgsVectorLayer* layer, const QString& shapefileName, bool onlySelectedFeatures = false,
7474
int uniqueIdField = -1, QProgressDialog* p = 0 );
7575

‎python/analysis/vector/qgsoverlayanalyzer.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class QgsOverlayAnalyzer
1717
@param shapefileName path to the output shp
1818
@param onlySelectedFeatures if true, only selected features are considered, else all the features
1919
@param p progress dialog (or 0 if no progress dialog is to be shown)
20-
@note: added in version 1.4*/
20+
*/
2121
bool intersection( QgsVectorLayer* layerA, QgsVectorLayer* layerB,
2222
const QString& shapefileName, bool onlySelectedFeatures = false,
2323
QProgressDialog* p = 0 );

0 commit comments

Comments
 (0)
Please sign in to comment.