1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:45:06 +00:00

LibGUI: Remove remaining G prefixes

This commit is contained in:
Tibor Nagy 2020-03-19 22:29:01 +01:00 committed by Andreas Kling
parent 809490dcb6
commit 30964ba7d0
4 changed files with 5 additions and 5 deletions

View file

@ -112,7 +112,7 @@ class Application::TooltipWindow final : public Window {
public:
void set_tooltip(const StringView& tooltip)
{
// FIXME: Add some kind of GLabel auto-sizing feature.
// FIXME: Add some kind of GUI::Label auto-sizing feature.
int text_width = m_label->font().width(tooltip);
set_rect(100, 100, text_width + 10, m_label->font().glyph_height() + 8);
m_label->set_text(tooltip);