1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00

SystemMonitor: Return icon display data as GUI::Icons

And delete the generic icon member which has been dormant since
switching to FileIconProvider. Fixes icon column not being properly
painted as icon cells.
This commit is contained in:
thankyouverycool 2021-03-03 23:50:06 -05:00 committed by Andreas Kling
parent af581cbd91
commit 2e5d5eb3d8
2 changed files with 4 additions and 6 deletions

View file

@ -144,6 +144,5 @@ private:
HashMap<int, NonnullOwnPtr<Thread>> m_threads;
NonnullOwnPtrVector<CpuInfo> m_cpus;
Vector<int> m_tids;
RefPtr<Gfx::Bitmap> m_generic_process_icon;
RefPtr<Core::File> m_proc_all;
};