replace Qt keyword slots with Q_SLOTS

This commit is contained in:
wmayer
2017-01-05 14:27:19 +01:00
parent 524ee4a679
commit 96dc57c068
6 changed files with 11 additions and 11 deletions

View File

@@ -181,7 +181,7 @@ signals:
void clicked();
void selected();
public slots:
public Q_SLOTS:
void setColor(const QColor &color, const QString &text = QString());
protected:
@@ -224,10 +224,10 @@ signals:
void selected(const QColor &);
void hid();
public slots:
public Q_SLOTS:
void getColorFromDialog();
protected slots:
protected Q_SLOTS:
void updateSelected();
protected: