diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 16:03:59 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 16:03:59 +0200 |
commit | e7b55037f48b8fcddbe283598cad4ef7dcf323f5 (patch) | |
tree | a954b20046204aefd0eec325a54bd20bc57060f4 /Applications/IRCClient/IRCWindow.h | |
parent | c13b9e22144ab246355d158448a8f6111b5e0a48 (diff) | |
download | serenity-e7b55037f48b8fcddbe283598cad4ef7dcf323f5.zip |
LibGUI: Convert GTableView to ObjectPtr
Diffstat (limited to 'Applications/IRCClient/IRCWindow.h')
-rw-r--r-- | Applications/IRCClient/IRCWindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/IRCClient/IRCWindow.h b/Applications/IRCClient/IRCWindow.h index 297463c982..a23d028b9f 100644 --- a/Applications/IRCClient/IRCWindow.h +++ b/Applications/IRCClient/IRCWindow.h @@ -46,7 +46,7 @@ private: void* m_owner { nullptr }; Type m_type; String m_name; - GTableView* m_table_view { nullptr }; + ObjectPtr<GTableView> m_table_view; ObjectPtr<GTextEditor> m_text_editor; RefPtr<IRCLogBuffer> m_log_buffer; int m_unread_count { 0 }; |