diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-22 00:31:54 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-22 00:31:54 +0200 |
commit | d6abfbdc5a7838fdc8e20e43a5146968a8dbcd81 (patch) | |
tree | 3a2b7d2f2c3d5e231a391f5f86ac64aaea2c49fb /Applications/ChanViewer | |
parent | bc319d9e8873734bb8e8cea3d762d7fab2ded887 (diff) | |
download | serenity-d6abfbdc5a7838fdc8e20e43a5146968a8dbcd81.zip |
LibCore: Remove ObjectPtr in favor of RefPtr
Now that CObject is fully ref-counted, just use RefPtr everywhere! :^)
Diffstat (limited to 'Applications/ChanViewer')
-rw-r--r-- | Applications/ChanViewer/BoardListModel.h | 2 | ||||
-rw-r--r-- | Applications/ChanViewer/ThreadCatalogModel.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Applications/ChanViewer/BoardListModel.h b/Applications/ChanViewer/BoardListModel.h index 405b8f17dd..584ec413f4 100644 --- a/Applications/ChanViewer/BoardListModel.h +++ b/Applications/ChanViewer/BoardListModel.h @@ -25,5 +25,5 @@ private: BoardListModel(); JsonArray m_boards; - ObjectPtr<CHttpJob> m_pending_job; + RefPtr<CHttpJob> m_pending_job; }; diff --git a/Applications/ChanViewer/ThreadCatalogModel.h b/Applications/ChanViewer/ThreadCatalogModel.h index bdf428f58f..d5f3f35875 100644 --- a/Applications/ChanViewer/ThreadCatalogModel.h +++ b/Applications/ChanViewer/ThreadCatalogModel.h @@ -37,5 +37,5 @@ private: String m_board { "g" }; JsonArray m_catalog; - ObjectPtr<CHttpJob> m_pending_job; + RefPtr<CHttpJob> m_pending_job; }; |