Skip to content

Commit

Permalink
fix signal-slot connection in New SpatiaLite layer dialog (fix #14343)
Browse files Browse the repository at this point in the history
(cherry picked from commit 70b9296)
  • Loading branch information
alexbruy committed Jun 23, 2016
1 parent f8750a6 commit c943531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsnewspatialitelayerdialog.cpp
Expand Up @@ -84,7 +84,7 @@ QgsNewSpatialiteLayerDialog::QgsNewSpatialiteLayerDialog( QWidget *parent, Qt::W

connect( mNameEdit, SIGNAL( textChanged( QString ) ), this, SLOT( nameChanged( QString ) ) );
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() ) );

mAddAttributeButton->setEnabled( false );
Expand Down

0 comments on commit c943531

Please sign in to comment.