1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:27:35 +00:00

AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.

This commit is contained in:
Andreas Kling 2019-06-21 18:37:47 +02:00
parent 77b9fa89dd
commit 90b1354688
188 changed files with 562 additions and 562 deletions

View file

@ -83,14 +83,14 @@ private:
int m_mine_count { 10 };
int m_unswept_empties { 0 };
Vector<OwnPtr<Square>> m_squares;
RetainPtr<GraphicsBitmap> m_mine_bitmap;
RetainPtr<GraphicsBitmap> m_flag_bitmap;
RetainPtr<GraphicsBitmap> m_badflag_bitmap;
RetainPtr<GraphicsBitmap> m_consider_bitmap;
RetainPtr<GraphicsBitmap> m_default_face_bitmap;
RetainPtr<GraphicsBitmap> m_good_face_bitmap;
RetainPtr<GraphicsBitmap> m_bad_face_bitmap;
RetainPtr<GraphicsBitmap> m_number_bitmap[8];
RefPtr<GraphicsBitmap> m_mine_bitmap;
RefPtr<GraphicsBitmap> m_flag_bitmap;
RefPtr<GraphicsBitmap> m_badflag_bitmap;
RefPtr<GraphicsBitmap> m_consider_bitmap;
RefPtr<GraphicsBitmap> m_default_face_bitmap;
RefPtr<GraphicsBitmap> m_good_face_bitmap;
RefPtr<GraphicsBitmap> m_bad_face_bitmap;
RefPtr<GraphicsBitmap> m_number_bitmap[8];
GButton& m_face_button;
GLabel& m_flag_label;
GLabel& m_time_label;