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

SpaceAnalyzer: Fix rendering bug when dealing with large file systems

This commit is contained in:
Mart G 2021-10-06 14:27:25 +02:00 committed by Ali Mohammad Pur
parent c569ed7e8b
commit 5f53dc6a45
3 changed files with 18 additions and 18 deletions

View file

@ -13,7 +13,7 @@ namespace SpaceAnalyzer {
struct TreeMapNode {
virtual String name() const = 0;
virtual int64_t area() const = 0;
virtual i64 area() const = 0;
virtual size_t num_children() const = 0;
virtual const TreeMapNode& child_at(size_t i) const = 0;
virtual void sort_children_by_area() const = 0;