mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:27:44 +00:00
LibCore: Remove ObjectPtr in favor of RefPtr
Now that CObject is fully ref-counted, just use RefPtr everywhere! :^)
This commit is contained in:
parent
bc319d9e88
commit
d6abfbdc5a
71 changed files with 146 additions and 156 deletions
|
@ -36,9 +36,9 @@ protected:
|
|||
virtual void resize_event(GResizeEvent&) override;
|
||||
|
||||
private:
|
||||
ObjectPtr<GTextEditor> m_editor;
|
||||
ObjectPtr<GButton> m_open_button;
|
||||
ObjectPtr<GWindow> m_list_window;
|
||||
ObjectPtr<GListView> m_list_view;
|
||||
RefPtr<GTextEditor> m_editor;
|
||||
RefPtr<GButton> m_open_button;
|
||||
RefPtr<GWindow> m_list_window;
|
||||
RefPtr<GListView> m_list_view;
|
||||
bool m_only_allow_values_from_model { false };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue