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 {
|
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
|
Loading…
Reference in a new issue