1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:27:45 +00:00

LibGUI: Port tooltip in Breadcrumbbar to String

This commit is contained in:
Karol Kosek 2023-08-23 20:16:52 +02:00 committed by Andreas Kling
parent dd92d09268
commit 3944c39b3a
4 changed files with 7 additions and 7 deletions

View file

@ -19,7 +19,7 @@ public:
virtual ~Breadcrumbbar() override = default;
void clear_segments();
void append_segment(DeprecatedString text, Gfx::Bitmap const* icon = nullptr, DeprecatedString data = {}, DeprecatedString tooltip = {});
void append_segment(DeprecatedString text, Gfx::Bitmap const* icon = nullptr, DeprecatedString data = {}, String tooltip = {});
void remove_end_segments(size_t segment_index);
void relayout();