Remove virtual keyword when we use override

This commit is contained in:
Laurent Montel 2024-08-19 07:39:00 +02:00
parent b30f2d90c9
commit 8c2faecb96
3 changed files with 3 additions and 3 deletions

View file

@ -73,7 +73,7 @@ public:
static int getTranslatedRow(HomeScreen *homeScreen, int realRow, int realColumn);
static int getTranslatedColumn(HomeScreen *homeScreen, int realRow, int realColumn);
virtual QJsonObject toJson() const override;
QJsonObject toJson() const override;
int row();
void setRow(int row);

View file

@ -20,7 +20,7 @@ class GSettingsItem : public QObject
public:
explicit GSettingsItem(const QString &key, QObject *parent = nullptr);
virtual ~GSettingsItem() override;
~GSettingsItem() override;
QVariant value(const QString &key) const;
void set(const QString &key, const QVariant &val);

View file

@ -91,7 +91,7 @@ class FakeJob : public KJob
Q_OBJECT
public:
explicit FakeJob(QObject *parent = nullptr);
virtual void start() override;
void start() override;
private Q_SLOTS:
void timerFinished();