mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:17:44 +00:00
PixelPaint: Make tool properties widget construction non-fallible
`Tool::get_properties_widget()` now also returns a NNRP to a widget rather than a raw pointer.
This commit is contained in:
parent
5df88dab07
commit
f34b1c7a7e
41 changed files with 72 additions and 85 deletions
|
@ -41,7 +41,7 @@ public:
|
|||
virtual void on_primary_color_change(Color) override;
|
||||
virtual void on_tool_deactivation() override;
|
||||
virtual Variant<Gfx::StandardCursor, NonnullRefPtr<Gfx::Bitmap const>> cursor() override;
|
||||
virtual ErrorOr<GUI::Widget*> get_properties_widget() override;
|
||||
virtual NonnullRefPtr<GUI::Widget> get_properties_widget() override;
|
||||
|
||||
private:
|
||||
virtual StringView tool_name() const override { return "Text Tool"sv; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue