1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:47:46 +00:00

FontEditor: Convert Model lists to Vector<String>

And propagate errors while building them.
This commit is contained in:
thankyouverycool 2023-05-10 17:00:05 -04:00 committed by Andreas Kling
parent e4ab9a799d
commit 2d2133b229
2 changed files with 13 additions and 10 deletions

View file

@ -161,9 +161,9 @@ private:
RefPtr<GUI::Window> m_font_preview_window;
DeprecatedString m_path;
Vector<DeprecatedString> m_font_weight_list;
Vector<DeprecatedString> m_font_slope_list;
Vector<DeprecatedString> m_unicode_block_list;
Vector<String> m_font_weight_list;
Vector<String> m_font_slope_list;
Vector<String> m_unicode_block_list;
bool m_font_metadata { true };
bool m_unicode_blocks { true };
Unicode::CodePointRange m_range { 0x0000, 0x10FFFF };