mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:37:35 +00:00
LibGUI: Convert remaining random little things to ObjectPtr
This commit is contained in:
parent
81a5c4fc56
commit
409494193e
11 changed files with 15 additions and 13 deletions
|
@ -9,7 +9,6 @@ class GTextEditor;
|
|||
class GComboBox : public GWidget {
|
||||
C_OBJECT(GComboBox)
|
||||
public:
|
||||
explicit GComboBox(GWidget* parent = nullptr);
|
||||
virtual ~GComboBox() override;
|
||||
|
||||
String text() const;
|
||||
|
@ -33,6 +32,7 @@ public:
|
|||
Function<void()> on_return_pressed;
|
||||
|
||||
protected:
|
||||
explicit GComboBox(GWidget* parent = nullptr);
|
||||
virtual void resize_event(GResizeEvent&) override;
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue