From 19e7b9fcf9f547b54d83b8a71a9066838056ea4f Mon Sep 17 00:00:00 2001 From: cfarmer Date: Wed, 10 Mar 2010 01:21:07 +0000 Subject: [PATCH] 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 --- python/plugins/fTools/tools/doGeoprocessing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/plugins/fTools/tools/doGeoprocessing.py b/python/plugins/fTools/tools/doGeoprocessing.py index 1429bbb67fb..a7b79de4441 100755 --- a/python/plugins/fTools/tools/doGeoprocessing.py +++ b/python/plugins/fTools/tools/doGeoprocessing.py @@ -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 = []