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

LibGUI: Store Tab titles using the new string class

This commit is contained in:
Karol Kosek 2023-03-10 20:34:00 +01:00 committed by Andreas Kling
parent 446c600d09
commit 4f08a05a3b
2 changed files with 3 additions and 3 deletions

View file

@ -147,7 +147,7 @@ private:
struct TabData {
int width(Gfx::Font const&) const;
DeprecatedString title;
String title;
RefPtr<Gfx::Bitmap const> icon;
Widget* widget { nullptr };
bool modified { false };