mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Remove virtual keyword when we use override
This commit is contained in:
parent
b30f2d90c9
commit
8c2faecb96
3 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue