Skip to content

Commit

Permalink
Union now supports all vector data types. This has not been extensive…
Browse files Browse the repository at this point in the history
…ly tested, and may produce odd results in some cases.

git-svn-id: http://svn.osgeo.org/qgis/trunk@13038 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
cfarmer committed Mar 10, 2010
1 parent 24ba030 commit 19e7b9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doGeoprocessing.py
Expand Up @@ -152,8 +152,8 @@ def manageGui( self ):
myListA = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] )
myListB = ftools_utils.getLayerNames( [ QGis.Polygon ] )
elif self.myFunction == 7 or self.myFunction == 6:
myListA = ftools_utils.getLayerNames( [ QGis.Polygon ] )
myListB = ftools_utils.getLayerNames( [ QGis.Polygon ] )
myListA = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] ) # added points and lines to test
myListB = ftools_utils.getLayerNames( [ QGis.Point, QGis.Line, QGis.Polygon ] ) # added points and lines to test
elif self.myFunction == 4:
myListA = ftools_utils.getLayerNames( [ QGis.Polygon ] )
myListB = []
Expand Down

0 comments on commit 19e7b9f

Please sign in to comment.