aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-29 15:01:08 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-04 16:53:59 +0200
commit00b37194da1eb8c39710cf9545f00d5f52b40791 (patch)
tree7ef3f2642727e16e09db4edcbd52f43f5f900db3 /src/app.hpp
parent38da977e18f4b9e9a295119b8bac194a8a87a498 (diff)
app: use id_shift of 22, just like in Qt
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/app.hpp')
-rw-r--r--src/app.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.hpp b/src/app.hpp
index da614a0..2995ca4 100644
--- a/src/app.hpp
+++ b/src/app.hpp
@@ -42,8 +42,8 @@ struct controller;
namespace wm {
struct id_allocator {
- constexpr static unsigned id_shift = 20;
- constexpr static unsigned id_mask = (1 << id_shift) - 1;
+ constexpr static const unsigned id_shift = 22;
+ constexpr static const unsigned id_mask = (1 << id_shift) - 1;
unsigned next = 1;