Remove extra ;
This commit is contained in:
parent
0ccce49fa2
commit
8c51619c1e
4 changed files with 4 additions and 4 deletions
|
@ -119,7 +119,7 @@ public:
|
|||
LatencyHigh,
|
||||
LatencyExtremelyHigh,
|
||||
};
|
||||
Q_ENUM(LatencyPolicy);
|
||||
Q_ENUM(LatencyPolicy)
|
||||
/**
|
||||
* Returns the latency policy for this render loop.
|
||||
*/
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
||||
/**
|
||||
|
|
|
@ -60,7 +60,7 @@ public:
|
|||
TabletToolButtonType,
|
||||
LastType
|
||||
};
|
||||
Q_ENUM(TriggerType);
|
||||
Q_ENUM(TriggerType)
|
||||
struct TabletToolButton
|
||||
{
|
||||
quint32 button;
|
||||
|
|
Loading…
Reference in a new issue