Skip to content

Commit 19e7b9f

Browse files
author
cfarmer
committedMar 10, 2010
Union now supports all vector data types. This has not been extensively tested, and may produce odd results in some cases.
git-svn-id: http://svn.osgeo.org/qgis/trunk@13038 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 24ba030 commit 19e7b9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/fTools/tools/doGeoprocessing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ def manageGui( self ):
152152
myListA = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] )
153153
myListB = ftools_utils.getLayerNames( [ QGis.Polygon ] )
154154
elif self.myFunction == 7 or self.myFunction == 6:
155-
myListA = ftools_utils.getLayerNames( [ QGis.Polygon ] )
156-
myListB = ftools_utils.getLayerNames( [ QGis.Polygon ] )
155+
myListA = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] ) # added points and lines to test
156+
myListB = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] ) # added points and lines to test
157157
elif self.myFunction == 4:
158158
myListA = ftools_utils.getLayerNames( [ QGis.Polygon ] )
159159
myListB = []

0 commit comments

Comments
 (0)
Please sign in to comment.