Skip to content

Commit

Permalink
Fix grass provider compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 15, 2017
1 parent 58026db commit 30d35c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/grass/qgsgrassprovider.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class GRASS_LIB_EXPORT QgsGrassProvider : public QgsVectorDataProvider
// ----------------------------------- New edit --------------------------------
// Changes are written during editing.
// TODO: implement also these functions but disable during manual layer editing
virtual bool addFeatures( QgsFeatureList &flist ) override { Q_UNUSED( flist ); return true; }
virtual bool addFeatures( QgsFeatureList &flist, QgsFeatureSink::Flags flags = 0 ) override { Q_UNUSED( flist ); Q_UNUSED( flags ); return true; }
virtual bool deleteFeatures( const QgsFeatureIds &id ) override { Q_UNUSED( id ); return true; }
virtual bool addAttributes( const QList<QgsField> &attributes ) override;
virtual bool deleteAttributes( const QgsAttributeIds &attributes ) override;
Expand Down

0 comments on commit 30d35c1

Please sign in to comment.