Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[SIP] add missing argument in QgsEditorWidgetRegistry::QgsEditorWidge…
- Loading branch information
|
@@ -45,7 +45,12 @@ class QgsEditorWidgetRegistry : QObject |
|
|
* |
|
|
* @return A new widget wrapper |
|
|
*/ |
|
|
QgsEditorWidgetWrapper* create( const QString& widgetId, QgsVectorLayer* vl, int fieldIdx, const QgsEditorWidgetConfig& config, QWidget* editor = NULL, QWidget* parent = NULL ) /Factory/; |
|
|
QgsEditorWidgetWrapper* create( const QString& widgetId, |
|
|
QgsVectorLayer* vl, |
|
|
int fieldIdx, |
|
|
const QgsEditorWidgetConfig& config, |
|
|
QWidget* editor, QWidget* parent, |
|
|
const QgsAttributeEditorContext context = QgsAttributeEditorContext() ) /Factory/; |
|
|
|
|
|
/** |
|
|
* Creates a configuration widget |
|
|
|
@@ -55,7 +55,12 @@ class GUI_EXPORT QgsEditorWidgetRegistry : public QObject |
|
|
* |
|
|
* @return A new widget wrapper |
|
|
*/ |
|
|
QgsEditorWidgetWrapper* create( const QString& widgetId, QgsVectorLayer* vl, int fieldIdx, const QgsEditorWidgetConfig& config, QWidget* editor, QWidget* parent, const QgsAttributeEditorContext context = QgsAttributeEditorContext() ); |
|
|
QgsEditorWidgetWrapper* create( const QString& widgetId, |
|
|
QgsVectorLayer* vl, |
|
|
int fieldIdx, |
|
|
const QgsEditorWidgetConfig& config, |
|
|
QWidget* editor, QWidget* parent, |
|
|
const QgsAttributeEditorContext context = QgsAttributeEditorContext() ); |
|
|
|
|
|
/** |
|
|
* Creates a configuration widget |
|
|