fix compilation error + bump Qt again as it was not the problem

This commit is contained in:
Martin Rotter 2023-09-23 20:23:03 +02:00
parent 8316d5f529
commit 4b378beda2
2 changed files with 3 additions and 3 deletions

View File

@ -24,13 +24,13 @@ if ($use_qt5 -eq "ON") {
$qt_version = "5.15.2"
}
else {
$qt_version = "6.4.3"
$qt_version = "6.5.2"
}
$maria_version = "10.6.15"
$maria_link = "https://archive.mariadb.org/mariadb-$maria_version/winx64-packages/mariadb-$maria_version-winx64.zip"
$maria_output = "maria.zip"
$cmake_version = "3.27.4"
$cmake_version = "3.27.6"
$cmake_link = "https://github.com/Kitware/CMake/releases/download/v$cmake_version/cmake-$cmake_version-windows-x86_64.zip"
$cmake_output = "cmake.zip"

View File

@ -32,7 +32,7 @@ ArticleListNotification::ArticleListNotification(QWidget* parent)
connect(m_ui.m_treeArticles->selectionModel(),
&QItemSelectionModel::currentChanged,
this,
&ArticleListNotificationModel::onMessageSelected);
&ArticleListNotification::onMessageSelected);
m_ui.m_treeArticles->setAttribute(Qt::WA_NoSystemBackground, true);