1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

LibKeyboard: Replace char data type to u32 for code point

This commit is contained in:
Hüseyin ASLITÜRK 2020-06-13 13:51:20 +03:00 committed by Andreas Kling
parent cfaed04464
commit 25e14911c5
5 changed files with 39 additions and 35 deletions

View file

@ -38,7 +38,7 @@ public:
CharacterMap(const String& file_name);
int set_system_map();
char get_char(KeyEvent);
u32 get_char(KeyEvent);
void set_character_map_data(CharacterMapData character_map_data);
private: