From ed0fce112484c052d79b88bcff479f7ab8e7ce1b Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Sat, 4 Mar 2023 02:15:23 +0100 Subject: [PATCH] Fix a renamed slot in the LogView --- src/gui/Src/Gui/LogView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/Src/Gui/LogView.cpp b/src/gui/Src/Gui/LogView.cpp index 870047d8..3ee0417c 100644 --- a/src/gui/Src/Gui/LogView.cpp +++ b/src/gui/Src/Gui/LogView.cpp @@ -31,7 +31,7 @@ LogView::LogView(QWidget* parent) : QTextBrowser(parent), logRedirection(NULL) flushTimer = new QTimer(this); flushTimer->setInterval(500); connect(flushTimer, SIGNAL(timeout()), this, SLOT(flushTimerSlot())); - connect(Bridge::getBridge(), SIGNAL(close()), flushTimer, SLOT(stop())); + connect(Bridge::getBridge(), SIGNAL(closeApplication()), flushTimer, SLOT(stop())); connect(Config(), SIGNAL(colorsUpdated()), this, SLOT(updateStyle())); connect(Config(), SIGNAL(fontsUpdated()), this, SLOT(updateStyle()));