From 70b9296f371a057ab90f64a6edc39f482a26f21d Mon Sep 17 00:00:00 2001 From: Alexander Bruy Date: Thu, 23 Jun 2016 14:29:30 +0300 Subject: [PATCH] fix signal-slot connection in New SpatiaLite layer dialog (fix #14343) --- src/app/qgsnewspatialitelayerdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qgsnewspatialitelayerdialog.cpp b/src/app/qgsnewspatialitelayerdialog.cpp index add7ef5aed0..c3c2209f56a 100644 --- a/src/app/qgsnewspatialitelayerdialog.cpp +++ b/src/app/qgsnewspatialitelayerdialog.cpp @@ -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 );