mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
Removed an un-needed apostrophe from a user visible string
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user