diff --git a/src/librssguard/gui/notifications/articlelistnotification.cpp b/src/librssguard/gui/notifications/articlelistnotification.cpp index 321cd8425..79c906921 100644 --- a/src/librssguard/gui/notifications/articlelistnotification.cpp +++ b/src/librssguard/gui/notifications/articlelistnotification.cpp @@ -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::of(&QComboBox::currentIndexChanged), + this, + &ArticleListNotification::showFeed); } void ArticleListNotification::loadResults(const QHash>& new_messages) {