mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-15 00:02:52 -04:00
Do not remove parameters from virtual methods which should be used in python
These methods did not actually override their parent methods but just coexisted and were never called. Fixes compilation with SIP version: 4.19.14
This commit is contained in:
parent
7f0ab8b9ff
commit
1a87fce33c
@ -38,7 +38,7 @@ Constructor for QgsAttributeFormEditorWidget.
|
||||
|
||||
~QgsAttributeFormEditorWidget();
|
||||
|
||||
virtual void createSearchWidgetWrappers();
|
||||
virtual void createSearchWidgetWrappers( const QgsAttributeEditorContext &context = QgsAttributeEditorContext() );
|
||||
|
||||
|
||||
void initialize( const QVariant &initialValue, bool mixedValues = false );
|
||||
|
@ -29,7 +29,7 @@ Widget to show for child relations on an attribute form.
|
||||
Constructor
|
||||
%End
|
||||
|
||||
virtual void createSearchWidgetWrappers();
|
||||
virtual void createSearchWidgetWrappers( const QgsAttributeEditorContext &context = QgsAttributeEditorContext() );
|
||||
|
||||
virtual QString currentFilterExpression() const;
|
||||
|
||||
|
@ -57,7 +57,7 @@ class GUI_EXPORT QgsAttributeFormEditorWidget : public QgsAttributeFormWidget
|
||||
|
||||
~QgsAttributeFormEditorWidget() override;
|
||||
|
||||
void createSearchWidgetWrappers( const QgsAttributeEditorContext &context SIP_PYARGREMOVE = QgsAttributeEditorContext() ) override;
|
||||
void createSearchWidgetWrappers( const QgsAttributeEditorContext &context = QgsAttributeEditorContext() ) override;
|
||||
|
||||
/**
|
||||
* Resets the widget to an initial value.
|
||||
|
@ -41,7 +41,7 @@ class GUI_EXPORT QgsAttributeFormRelationEditorWidget : public QgsAttributeFormW
|
||||
*/
|
||||
explicit QgsAttributeFormRelationEditorWidget( QgsRelationWidgetWrapper *wrapper, QgsAttributeForm *form );
|
||||
|
||||
void createSearchWidgetWrappers( const QgsAttributeEditorContext &context SIP_PYARGREMOVE = QgsAttributeEditorContext() ) override;
|
||||
void createSearchWidgetWrappers( const QgsAttributeEditorContext &context = QgsAttributeEditorContext() ) override;
|
||||
QString currentFilterExpression() const override;
|
||||
|
||||
private:
|
||||
|
Loading…
x
Reference in New Issue
Block a user