move to slot (#3032)
This commit is contained in:
parent
691bf36fbe
commit
d1b95aad16
1 changed files with 3 additions and 3 deletions
|
@ -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
|
Loading…
Reference in a new issue