Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed documentation of QgsGeometry::asMulti*() functions
git-svn-id: http://svn.osgeo.org/qgis/trunk@10836 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed May 22, 2009
1 parent 61a292f commit 1e6882a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions python/core/qgsgeometry.sip
Expand Up @@ -272,16 +272,16 @@ not disjoint with existing polygons of the feature*/
if wkbType is WKBPolygon, otherwise an empty list */
QgsPolygon asPolygon();

/** return contents of the geometry as a polygon
if wkbType is WKBPolygon, otherwise an empty list */
/** return contents of the geometry as a multi point
if wkbType is WKBMultiPint, otherwise an empty list */
QgsMultiPoint asMultiPoint();

/** return contents of the geometry as a polygon
if wkbType is WKBPolygon, otherwise an empty list */
/** return contents of the geometry as a multi linestring
if wkbType is WKBMultiLineString, otherwise an empty list */
QgsMultiPolyline asMultiPolyline();

/** return contents of the geometry as a polygon
if wkbType is WKBPolygon, otherwise an empty list */
/** return contents of the geometry as a multi polygon
if wkbType is WKBMultiPolygon, otherwise an empty list */
QgsMultiPolygon asMultiPolygon();

/** return contents of the geometry as a list of geometries
Expand Down
12 changes: 6 additions & 6 deletions src/core/qgsgeometry.h
Expand Up @@ -316,16 +316,16 @@ class CORE_EXPORT QgsGeometry
if wkbType is WKBPolygon, otherwise an empty list */
QgsPolygon asPolygon();

/** return contents of the geometry as a polygon
if wkbType is WKBPolygon, otherwise an empty list */
/** return contents of the geometry as a multi point
if wkbType is WKBMultiPoint, otherwise an empty list */
QgsMultiPoint asMultiPoint();

/** return contents of the geometry as a polygon
if wkbType is WKBPolygon, otherwise an empty list */
/** return contents of the geometry as a multi linestring
if wkbType is WKBMultiLineString, otherwise an empty list */
QgsMultiPolyline asMultiPolyline();

/** return contents of the geometry as a polygon
if wkbType is WKBPolygon, otherwise an empty list */
/** return contents of the geometry as a multi polygon
if wkbType is WKBMultiPolygon, otherwise an empty list */
QgsMultiPolygon asMultiPolygon();

/** return contents of the geometry as a list of geometries
Expand Down

0 comments on commit 1e6882a

Please sign in to comment.