From ff9242021ab3e1422adef01d54392883a8929642 Mon Sep 17 00:00:00 2001 From: Justin Clift Date: Mon, 15 Aug 2016 00:07:12 +0100 Subject: [PATCH] Removed an un-needed apostrophe from a user visible string --- src/EditTableDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EditTableDialog.cpp b/src/EditTableDialog.cpp index a9feb2a7..9877845f 100644 --- a/src/EditTableDialog.cpp +++ b/src/EditTableDialog.cpp @@ -366,7 +366,7 @@ void EditTableDialog::itemChanged(QTreeWidgetItem *item, int column) if(rowcount != uniquecount) { // There is a NULL value, so print an error message, uncheck the combobox, and return here - QMessageBox::information(this, qApp->applicationName(), tr("Column '%1'' has no unique data.\n").arg(field->name()) + QMessageBox::information(this, qApp->applicationName(), tr("Column '%1' has no unique data.\n").arg(field->name()) + tr("This makes it impossible to set this flag. Please change the table data first.")); item->setCheckState(column, Qt::Unchecked); return;