mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 14:47:35 +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
|
@ -21,8 +21,8 @@ private:
|
|||
|
||||
CEventLoop m_event_loop;
|
||||
int m_keyboard_fd { -1 };
|
||||
ObjectPtr<CNotifier> m_keyboard_notifier;
|
||||
RefPtr<CNotifier> m_keyboard_notifier;
|
||||
int m_mouse_fd { -1 };
|
||||
ObjectPtr<CNotifier> m_mouse_notifier;
|
||||
ObjectPtr<CLocalServer> m_server;
|
||||
RefPtr<CNotifier> m_mouse_notifier;
|
||||
RefPtr<CLocalServer> m_server;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue