Remove extra ';'

This commit is contained in:
Laurent Montel 2022-06-23 06:56:24 +02:00
parent 08d140982d
commit d1837b8603
5 changed files with 5 additions and 5 deletions

View file

@ -118,7 +118,7 @@ public:
Commit,
CommitModeset
};
Q_ENUM(CommitMode);
Q_ENUM(CommitMode)
static bool commitPipelines(const QVector<DrmPipeline *> &pipelines, CommitMode mode, const QVector<DrmObject *> &unusedObjects = {});
private:

View file

@ -21,7 +21,7 @@ public:
enum Roles {
DesktopFileNameRole = Qt::UserRole + 1,
};
Q_ENUM(Roles);
Q_ENUM(Roles)
VirtualKeyboardsModel(QObject *parent = nullptr);
QVariant data(const QModelIndex &index, int role) const override;

View file

@ -98,7 +98,7 @@ public:
Always = 1,
Automatic = 2,
};
Q_ENUM(VrrPolicy);
Q_ENUM(VrrPolicy)
/**
* the current policy regarding the use of variable refresh rate

View file

@ -53,7 +53,7 @@ public:
Embedded = 2,
Metadata = 4,
};
Q_ENUM(CursorMode);
Q_ENUM(CursorMode)
Q_SIGNALS:
void outputScreencastRequested(ScreencastStreamV1Interface *stream, OutputInterface *output, CursorMode mode);

View file

@ -67,7 +67,7 @@ public:
StateReset = 2, // full state after reset
StateEnter = 3, // full state after switching focus to a different widget on client side
};
Q_ENUM(UpdateReason);
Q_ENUM(UpdateReason)
/**
* The preferred language as a RFC-3066 format language tag.
*