Fix for quantile generation bug. The problem was that feature cursor was not reset in select method of ogr provider

git-svn-id: http://svn.osgeo.org/qgis/trunk@9488 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
mhugent 2008-10-17 10:01:34 +00:00
parent 39e648a339
commit 029adf2bc1

View File

@ -361,6 +361,9 @@ void QgsOgrProvider::select( QgsAttributeList fetchAttributes, QgsRect rect, boo
OGR_L_SetSpatialFilter( ogrLayer, filter );
OGR_G_DestroyGeometry( filter );
}
//start with first feature
OGR_L_ResetReading( ogrLayer );
}