Replace slots with Q_SLOTS
This commit is contained in:
@@ -76,7 +76,7 @@ class Organize : public QObject {
|
||||
protected:
|
||||
void timerEvent(QTimerEvent *e) override;
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
void ProcessSomeFiles();
|
||||
void FileTranscoded(const QString &input, const QString &output, bool success);
|
||||
void LogLine(const QString &message);
|
||||
|
||||
@@ -89,11 +89,11 @@ class OrganizeDialog : public QDialog {
|
||||
Q_SIGNALS:
|
||||
void FileCopied(const int);
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
void accept() override;
|
||||
void reject() override;
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
void SaveSettings();
|
||||
void RestoreDefaults();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user