Avoid 31-bit left shift of 32-bit signed values

This commit is contained in:
Paul Cornett
2019-04-05 09:48:35 -07:00
parent 628e7af79e
commit 1a90833839
2 changed files with 6 additions and 6 deletions

View File

@@ -368,7 +368,7 @@ public:
buttonCustom3 = 1 << 28,
savedHiddenState = 1 << 30, // used internally
actionPane = 1 << 31 // used internally
actionPane = 1u << 31 // used internally
};
public: