Add explicit

This commit is contained in:
Jonas Kvinge
2020-04-07 16:49:15 +02:00
parent 3efc496c41
commit 21b2193cd0
199 changed files with 337 additions and 342 deletions

View File

@@ -31,12 +31,12 @@ class ClickableLabel : public QLabel {
Q_OBJECT
public:
ClickableLabel(QWidget *parent = nullptr);
explicit ClickableLabel(QWidget *parent = nullptr);
signals:
signals:
void Clicked();
protected:
protected:
void mousePressEvent(QMouseEvent *event);
};