Skip to content
Snippets Groups Projects
Commit ee3dd339 authored by Benny Baumann's avatar Benny Baumann
Browse files

Avoid undefined symbol issue with KEY_EVENT

parent 730a065e
No related branches found
No related tags found
No related merge requests found
Pipeline #7408 canceled
...@@ -163,7 +163,10 @@ int constexpr suspend{KEY_SUSPEND}; ...@@ -163,7 +163,10 @@ int constexpr suspend{KEY_SUSPEND};
int constexpr undo{KEY_UNDO}; int constexpr undo{KEY_UNDO};
int constexpr mouse{KEY_MOUSE}; int constexpr mouse{KEY_MOUSE};
int constexpr resize{KEY_RESIZE}; int constexpr resize{KEY_RESIZE};
#ifdef KEY_EVENT
int constexpr event{KEY_EVENT}; int constexpr event{KEY_EVENT};
#endif
} // namespace keys } // namespace keys
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment