From 24fd2918c70b9450c7c0e9f4e1131727f5152561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Thu, 1 Nov 2018 23:30:13 +0100 Subject: NOISSUE fix more rhel 7.6 problems? --- application/MainWindow.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'application/MainWindow.cpp') diff --git a/application/MainWindow.cpp b/application/MainWindow.cpp index 4085f2bc..4ee49b80 100644 --- a/application/MainWindow.cpp +++ b/application/MainWindow.cpp @@ -687,7 +687,8 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new MainWindow { bool cat_enable = MMC->settings()->get("TheCat").toBool(); ui->actionCAT->setChecked(cat_enable); - connect(ui->actionCAT, SIGNAL(toggled(bool)), SLOT(onCatToggled(bool))); + // NOTE: calling the operator like that is an ugly hack to appease ancient gcc... + connect(ui->actionCAT.operator->(), SIGNAL(toggled(bool)), SLOT(onCatToggled(bool))); setCatBackground(cat_enable); } // start instance when double-clicked @@ -787,7 +788,8 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new MainWindow bool updatesAllowed = MMC->updatesAreAllowed(); updatesAllowedChanged(updatesAllowed); - connect(ui->actionCheckUpdate, &QAction::triggered, this, &MainWindow::checkForUpdates); + // NOTE: calling the operator like that is an ugly hack to appease ancient gcc... + connect(ui->actionCheckUpdate.operator->(), &QAction::triggered, this, &MainWindow::checkForUpdates); // set up the updater object. auto updater = MMC->updateChecker(); -- cgit v1.2.3