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/qgis@13038 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
cfarmer committed Mar 10, 2010
1 parent f1af8c4 commit c95fda1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doGeoprocessing.py
Original file line number Diff line number Diff line change
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 c95fda1

Please sign in to comment.