From dc0db9d1926c5b3a84f227654951e9d4d4a587fc Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 4 Sep 2025 21:43:15 -0400 Subject: [PATCH] refactor: LogWidget remove unused Q_SIGNALS delclaration --- src/lib/gui/widgets/LogWidget.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/gui/widgets/LogWidget.h b/src/lib/gui/widgets/LogWidget.h index 1ab4bc9bd..e94ca4bef 100644 --- a/src/lib/gui/widgets/LogWidget.h +++ b/src/lib/gui/widgets/LogWidget.h @@ -19,8 +19,6 @@ public: explicit LogWidget(QWidget *parent = nullptr); void appendLine(const QString &msg); -Q_SIGNALS: - private: QPlainTextEdit *m_textLog = nullptr; };