From d1b95aad1633776f86960a26469611c2f2892f9d Mon Sep 17 00:00:00 2001 From: Zach H Date: Fri, 19 Jan 2018 19:04:48 -0500 Subject: [PATCH] move to slot (#3032) --- cockatrice/src/dlg_viewlog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cockatrice/src/dlg_viewlog.h b/cockatrice/src/dlg_viewlog.h index 96cf5028..06ec1a6f 100644 --- a/cockatrice/src/dlg_viewlog.h +++ b/cockatrice/src/dlg_viewlog.h @@ -10,17 +10,17 @@ class QCloseEvent; class DlgViewLog : public QDialog { Q_OBJECT public: - DlgViewLog(QWidget *parent); + explicit DlgViewLog(QWidget *parent); protected: - void closeEvent(QCloseEvent *event); + void closeEvent(QCloseEvent *event) override; private: QPlainTextEdit *logArea; QCheckBox *coClearLog; void loadInitialLogBuffer(); - void actCheckBoxChanged(bool abNewValue); private slots: void logEntryAdded(QString message); + void actCheckBoxChanged(bool abNewValue); }; #endif \ No newline at end of file