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 { class DlgViewLog : public QDialog {
Q_OBJECT Q_OBJECT
public: public:
DlgViewLog(QWidget *parent); explicit DlgViewLog(QWidget *parent);
protected: protected:
void closeEvent(QCloseEvent *event); void closeEvent(QCloseEvent *event) override;
private: private:
QPlainTextEdit *logArea; QPlainTextEdit *logArea;
QCheckBox *coClearLog; QCheckBox *coClearLog;
void loadInitialLogBuffer(); void loadInitialLogBuffer();
void actCheckBoxChanged(bool abNewValue);
private slots: private slots:
void logEntryAdded(QString message); void logEntryAdded(QString message);
void actCheckBoxChanged(bool abNewValue);
}; };
#endif #endif