Additional updates to 'Union' geoprocessing tool:Fixes #1865 again, this time properly! Should also fix other complaints regarding missing features in output shapefile.

git-svn-id: http://svn.osgeo.org/qgis/trunk@11347 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
cfarmer 2009-08-11 22:23:53 +00:00
parent 456cef1aab
commit b5eefa525a

View File

@ -1036,6 +1036,14 @@ class geoprocessingThread( QThread ):
except:
FEATURE_EXCEPT = False
continue
else:
try:
outFeat.setGeometry( geom )
outFeat.setAttributeMap( atMapA )
writer.addFeature( outFeat )
except:
FEATURE_EXCEPT = False
continue
except:
GEOS_EXCEPT = False
found = False