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

LibGUI: Convert GScrollBar to ObjectPtr

This commit is contained in:
Andreas Kling 2019-09-21 15:07:24 +02:00
parent 4616a13e94
commit bce58bbbca
7 changed files with 11 additions and 10 deletions

View file

@ -100,5 +100,5 @@ private:
ObjectPtr<CTimer> m_visual_beep_timer;
RefPtr<CConfigFile> m_config;
GScrollBar* m_scrollbar { nullptr };
ObjectPtr<GScrollBar> m_scrollbar;
};