mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-08 00:05:09 -04:00
fix signal-slot connection in New SpatiaLite layer dialog (fix #14343)
This commit is contained in:
parent
57d3c78c44
commit
70b9296f37
@ -84,7 +84,7 @@ QgsNewSpatialiteLayerDialog::QgsNewSpatialiteLayerDialog( QWidget *parent, Qt::W
|
|||||||
|
|
||||||
connect( mNameEdit, SIGNAL( textChanged( QString ) ), this, SLOT( nameChanged( QString ) ) );
|
connect( mNameEdit, SIGNAL( textChanged( QString ) ), this, SLOT( nameChanged( QString ) ) );
|
||||||
connect( mAttributeView, SIGNAL( itemSelectionChanged() ), this, SLOT( selectionChanged() ) );
|
connect( mAttributeView, SIGNAL( itemSelectionChanged() ), this, SLOT( selectionChanged() ) );
|
||||||
connect( leLayerName, SIGNAL( textChanged( const QString& text ) ), this, SLOT( checkOk() ) );
|
connect( leLayerName, SIGNAL( textChanged( QString ) ), this, SLOT( checkOk() ) );
|
||||||
connect( checkBoxPrimaryKey, SIGNAL( clicked() ), this, SLOT( checkOk() ) );
|
connect( checkBoxPrimaryKey, SIGNAL( clicked() ), this, SLOT( checkOk() ) );
|
||||||
|
|
||||||
mAddAttributeButton->setEnabled( false );
|
mAddAttributeButton->setEnabled( false );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user