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

LibGUI: Use Core::Object::add() a whole bunch

This commit is contained in:
Andreas Kling 2020-02-23 10:31:26 +01:00
parent 8efafdfc12
commit 45c25ffecd
11 changed files with 52 additions and 52 deletions

View file

@ -74,8 +74,8 @@ public:
Function<void(int)> on_value_changed;
protected:
explicit Slider(Widget*);
explicit Slider(Orientation, Widget*);
explicit Slider(Widget* = nullptr);
explicit Slider(Orientation, Widget* = nullptr);
virtual void paint_event(PaintEvent&) override;
virtual void mousedown_event(MouseEvent&) override;