mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
Fix Qt4 build
This commit is contained in:
@@ -268,7 +268,7 @@ QVariant SqliteTableModel::data(const QModelIndex &index, int role) const
|
||||
} else if(role == Qt::ToolTipRole) {
|
||||
sqlb::ForeignKeyClause fk = getForeignKeyClause(index.column()-1);
|
||||
if(fk.isSet())
|
||||
return tr("References %1(%2)\nHold Ctrl+Shift and click to jump there").arg(fk.table()).arg(fk.columns().join(','));
|
||||
return tr("References %1(%2)\nHold Ctrl+Shift and click to jump there").arg(fk.table()).arg(fk.columns().join(","));
|
||||
else
|
||||
return QString();
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user