fix build

This commit is contained in:
Martin Rotter 2023-09-22 13:24:59 +02:00
parent 09b4de7e13
commit d7574afa0e

View file

@ -36,7 +36,10 @@ ArticleListNotification::ArticleListNotification(QWidget* parent)
m_ui.m_treeArticles->setPalette(pal);
m_ui.m_treeArticles->setModel(m_model);
connect(m_ui.m_cmbFeeds, &QComboBox::currentIndexChanged, this, &ArticleListNotification::showFeed);
connect(m_ui.m_cmbFeeds,
QOverload<int>::of(&QComboBox::currentIndexChanged),
this,
&ArticleListNotification::showFeed);
}
void ArticleListNotification::loadResults(const QHash<Feed*, QList<Message>>& new_messages) {