From d5164a0c64fa329336ccb732fad0b4fcc898053a Mon Sep 17 00:00:00 2001 From: Martin Kleusberg Date: Mon, 22 Jun 2015 00:09:15 +0200 Subject: [PATCH] Fix Qt4 build --- src/sqlitetablemodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sqlitetablemodel.cpp b/src/sqlitetablemodel.cpp index 7583c46a..b923bf68 100644 --- a/src/sqlitetablemodel.cpp +++ b/src/sqlitetablemodel.cpp @@ -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 {