mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
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
This commit is contained in:
parent
24ba0309ff
commit
19e7b9fcf9
@ -152,8 +152,8 @@ class GeoprocessingDialog( QDialog, Ui_Dialog ):
|
||||
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 = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user