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

LibGUI: Allow constructing Variant from FlyString

This commit is contained in:
Andreas Kling 2020-03-22 19:06:31 +01:00
parent 7f83f77377
commit 7f8dc347b5
2 changed files with 7 additions and 0 deletions

View file

@ -43,6 +43,7 @@ public:
Variant(unsigned);
Variant(const char*);
Variant(const String&);
Variant(const FlyString&);
Variant(const Gfx::Bitmap&);
Variant(const GUI::Icon&);
Variant(const Gfx::Point&);