From ddb44b4383ac1b50e1516b082ed35ec5a340e557 Mon Sep 17 00:00:00 2001 From: Roman Gilg Date: Thu, 14 Jun 2018 15:48:02 +0200 Subject: [PATCH] Small code style improvement --- utils.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/utils.h b/utils.h index e4224192a3..7fb2537445 100644 --- a/utils.h +++ b/utils.h @@ -142,14 +142,14 @@ MaximizeMode operator^(MaximizeMode m1, MaximizeMode m2) } enum class QuickTileFlag { - None = 0, - Left = 1, - Right = 1<<1, - Top = 1<<2, - Bottom = 1<<3, - Horizontal = Left|Right, - Vertical = Top|Bottom, - Maximize = Left|Right|Top|Bottom + None = 0, + Left = 1 << 0, + Right = 1 << 1, + Top = 1 << 2, + Bottom = 1 << 3, + Horizontal = Left | Right, + Vertical = Top | Bottom, + Maximize = Left | Right | Top | Bottom, }; Q_DECLARE_FLAGS(QuickTileMode, QuickTileFlag)