Remove unused FLAG_REPEAT

This commit is contained in:
Robert Müller 2023-04-21 18:35:15 +02:00
parent ecc49a699f
commit adc813493a

View file

@ -41,10 +41,9 @@ protected:
public: public:
enum enum
{ {
FLAG_PRESS = 1, FLAG_PRESS = 1 << 0,
FLAG_RELEASE = 2, FLAG_RELEASE = 1 << 1,
FLAG_REPEAT = 4, FLAG_TEXT = 1 << 2,
FLAG_TEXT = 8,
}; };
enum ECursorType enum ECursorType
{ {