Remove extra ;

This commit is contained in:
Laurent Montel 2023-07-18 13:18:08 +02:00
parent 0ccce49fa2
commit 8c51619c1e
4 changed files with 4 additions and 4 deletions

View file

@ -119,7 +119,7 @@ public:
LatencyHigh,
LatencyExtremelyHigh,
};
Q_ENUM(LatencyPolicy);
Q_ENUM(LatencyPolicy)
/**
* Returns the latency policy for this render loop.
*/

View file

@ -31,7 +31,7 @@ public:
Deactivating,
Active
};
Q_ENUM(Status);
Q_ENUM(Status)
/** Constructs the object, passes the effect as the parent. */
EffectTogglableState(Effect *parent);

View file

@ -188,7 +188,7 @@ enum class QuickTileFlag {
Vertical = Top | Bottom,
Maximize = Left | Right | Top | Bottom,
};
Q_ENUM_NS(QuickTileFlag);
Q_ENUM_NS(QuickTileFlag)
Q_DECLARE_FLAGS(QuickTileMode, QuickTileFlag)
/**

View file

@ -60,7 +60,7 @@ public:
TabletToolButtonType,
LastType
};
Q_ENUM(TriggerType);
Q_ENUM(TriggerType)
struct TabletToolButton
{
quint32 button;