1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

LibGUI: Convert GToolBar to ObjectPtr

This commit is contained in:
Andreas Kling 2019-09-21 16:27:54 +02:00
parent b78225941d
commit f4531c976c
6 changed files with 10 additions and 8 deletions

View file

@ -160,7 +160,7 @@ void IRCAppWindow::setup_widgets()
widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
widget->layout()->set_spacing(0);
auto* toolbar = new GToolBar(widget);
auto toolbar = GToolBar::construct(widget);
toolbar->set_has_frame(false);
toolbar->add_action(*m_change_nick_action);
toolbar->add_separator();