File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/analysis/vector/geometry_checker Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ void QgsFeaturePool::updateFeature( QgsFeature &feature )
123
123
mIndexMutex .unlock ();
124
124
}
125
125
126
- void QgsFeaturePool::deleteFeature ( const QgsFeatureId & fid )
126
+ void QgsFeaturePool::deleteFeature ( QgsFeatureId fid )
127
127
{
128
128
QgsFeature origFeature;
129
129
if ( get ( fid, origFeature ) )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class ANALYSIS_EXPORT QgsFeaturePool : public QObject
38
38
bool get ( QgsFeatureId id, QgsFeature &feature );
39
39
void addFeature ( QgsFeature &feature );
40
40
void updateFeature ( QgsFeature &feature );
41
- void deleteFeature ( const QgsFeatureId & fid );
41
+ void deleteFeature ( QgsFeatureId fid );
42
42
QgsFeatureIds getIntersects ( const QgsRectangle &rect ) const ;
43
43
QgsVectorLayer *getLayer () const { return mLayer ; }
44
44
const QgsFeatureIds &getFeatureIds () const { return mFeatureIds ; }
You can’t perform that action at this time.
0 commit comments