move to slot (#3032)

This commit is contained in:
Zach H 2018-01-19 19:04:48 -05:00 committed by GitHub
parent 691bf36fbe
commit d1b95aad16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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