Skip to content

Commit

Permalink
[PyQGIS] Fixes #42488 : Fix QgsFeatureFilterModel SIP interface
Browse files Browse the repository at this point in the history
  • Loading branch information
troopa81 authored and nyalldawson committed Jun 14, 2021
1 parent 0183563 commit 6d0d78f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions python/core/auto_generated/qgsfeaturefiltermodel.sip.in
Expand Up @@ -97,6 +97,9 @@ Allows specifying one value that does not need to match the filter criteria but
still be available in the model.
%End

private:
virtual void requestToReloadCurrentFeature( QgsFeatureRequest &request );

};

/************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsfeaturefiltermodel.h
Expand Up @@ -110,7 +110,7 @@ class CORE_EXPORT QgsFeatureFilterModel : public QgsFeaturePickerModelBase
private:
QgsFeatureExpressionValuesGatherer *createValuesGatherer( const QgsFeatureRequest &request ) const override;

void requestToReloadCurrentFeature( QgsFeatureRequest &request ) override;
void requestToReloadCurrentFeature( QgsFeatureRequest &request ) override SIP_FORCE;

QSet<QString> requestedAttributes() const override;

Expand Down

0 comments on commit 6d0d78f

Please sign in to comment.