Skip to content

Commit 70b9296

Browse files
committedJun 23, 2016
fix signal-slot connection in New SpatiaLite layer dialog (fix #14343)
1 parent 57d3c78 commit 70b9296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsnewspatialitelayerdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ QgsNewSpatialiteLayerDialog::QgsNewSpatialiteLayerDialog( QWidget *parent, Qt::W
8484

8585
connect( mNameEdit, SIGNAL( textChanged( QString ) ), this, SLOT( nameChanged( QString ) ) );
8686
connect( mAttributeView, SIGNAL( itemSelectionChanged() ), this, SLOT( selectionChanged() ) );
87-
connect( leLayerName, SIGNAL( textChanged( const QString& text ) ), this, SLOT( checkOk() ) );
87+
connect( leLayerName, SIGNAL( textChanged( QString ) ), this, SLOT( checkOk() ) );
8888
connect( checkBoxPrimaryKey, SIGNAL( clicked() ), this, SLOT( checkOk() ) );
8989

9090
mAddAttributeButton->setEnabled( false );

0 commit comments

Comments
 (0)
Please sign in to comment.