From 6be56a775efc3d053f6801e626eb89ae5a9a459b Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 20 Feb 2023 17:15:29 -0500 Subject: [PATCH] Use Q_SIGNAL and Q_SLOT macros in activeStations.h. --- widgets/activeStations.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/widgets/activeStations.h b/widgets/activeStations.h index 207668ddd..69c065537 100644 --- a/widgets/activeStations.h +++ b/widgets/activeStations.h @@ -33,17 +33,15 @@ public: bool m_clickOK=false; bool m_bReadyOnly; -signals: - void callSandP(int nline); - void activeStationsDisplay(); - -private slots: - void on_textEdit_clicked(); - private: void read_settings (); void write_settings (); + Q_SIGNAL void callSandP(int nline); + Q_SIGNAL void activeStationsDisplay(); + Q_SIGNAL void cursorPositionChanged(); + Q_SLOT void on_cbReadyOnly_toggled(bool b); + Q_SLOT void on_textEdit_clicked(); qint64 m_msec0=0; QString m_mode="";