Replace slots with Q_SLOTS

This commit is contained in:
Jonas Kvinge
2024-08-12 01:06:15 +02:00
parent f624b7a331
commit cbce9892d5
209 changed files with 277 additions and 277 deletions

View File

@@ -77,7 +77,7 @@ class Queue : public QAbstractProxyModel {
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override;
Qt::ItemFlags flags(const QModelIndex &idx) const override;
public slots:
public Q_SLOTS:
void UpdateSummaryText();
Q_SIGNALS:
@@ -85,7 +85,7 @@ class Queue : public QAbstractProxyModel {
void ItemCountChanged(const int count);
void SummaryTextChanged(const QString &message);
private slots:
private Q_SLOTS:
void SourceDataChanged(const QModelIndex &top_left, const QModelIndex &bottom_right);
void SourceLayoutChanged();
void UpdateTotalLength();