summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-07-02 14:33:29 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2020-07-02 14:33:29 +0200
commit10dc4f53a54982837624938673b0cf3a7e297eca (patch)
treeec0e083698074c612aa3da3cb03509c4b77166cb /src
parentd5eeb79a0cee504c8afdcbc076d541157b6c340a (diff)
control/control: Renumber ControlFlag enum members
Diffstat (limited to 'src')
-rw-r--r--src/control/control.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/control/control.h b/src/control/control.h
index d1642623cf..56df7d5ae2 100644
--- a/src/control/control.h
+++ b/src/control/control.h
@@ -15,9 +15,9 @@ class ControlObject;
enum class ControlFlag {
None = 0,
- AllowEmptyKey = 1 << 1,
- NoAssertIfMissing = 1 << 2,
- NoWarnIfMissing = (1 << 3) | NoAssertIfMissing,
+ AllowEmptyKey = 1,
+ NoAssertIfMissing = 1 << 1,
+ NoWarnIfMissing = (1 << 2) | NoAssertIfMissing,
};
Q_DECLARE_FLAGS(ControlFlags, ControlFlag)