Avoid 31-bit left shift of 32-bit signed values
This commit is contained in:
@@ -368,7 +368,7 @@ public:
|
||||
buttonCustom3 = 1 << 28,
|
||||
|
||||
savedHiddenState = 1 << 30, // used internally
|
||||
actionPane = 1 << 31 // used internally
|
||||
actionPane = 1u << 31 // used internally
|
||||
};
|
||||
|
||||
public:
|
||||
|
Reference in New Issue
Block a user