From 9304b4013fd8aedc86b46ae341df2b0e2378ff4e Mon Sep 17 00:00:00 2001 From: Peinthor Rene Date: Fri, 17 Oct 2014 13:54:18 +0200 Subject: [PATCH] edittabledlg: missed to remove another textchangeevent --- src/EditTableDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EditTableDialog.cpp b/src/EditTableDialog.cpp index 5f4f9c16..cf27503d 100644 --- a/src/EditTableDialog.cpp +++ b/src/EditTableDialog.cpp @@ -385,7 +385,7 @@ void EditTableDialog::addField() typeBox->addItems(sqlb::Field::Datatypes); ui->treeWidget->setItemWidget(tbitem, kType, typeBox); connect(typeBox, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTypes())); - connect(typeBox, SIGNAL(editTextChanged(QString)), this, SLOT(updateTypes())); + //connect(typeBox, SIGNAL(editTextChanged(QString)), this, SLOT(updateTypes())); tbitem->setCheckState(kNotNull, Qt::Unchecked); tbitem->setCheckState(kPrimaryKey, Qt::Unchecked);