1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +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

@ -37,7 +37,7 @@ public:
static Optional<CharacterMapData> load_from_file(const String& file_name);
private:
static ByteBuffer read_map(const JsonObject& json, const String& name);
static Vector<u32> read_map(const JsonObject& json, const String& name);
};
}