Fix compilation against Qt6 and add CI

This commit is contained in:
Tobias Fella
2023-02-01 16:34:39 +00:00
parent 833d2159e7
commit 4f7d32df2b
7 changed files with 18 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ CompletionModel::CompletionModel(QObject *parent)
: QAbstractListModel(parent)
, m_filterModel(new CompletionProxyModel())
, m_userListModel(new UserListModel(this))
, m_emojiModel(new KConcatenateRowsProxyModel(this))
, m_emojiModel(new QConcatenateTablesProxyModel(this))
{
connect(this, &CompletionModel::textChanged, this, &CompletionModel::updateCompletion);
connect(this, &CompletionModel::roomChanged, this, [this]() {