summaryrefslogtreecommitdiff
path: root/Userland/Applications/SpaceAnalyzer/TreeMapWidget.h
diff options
context:
space:
mode:
authorMart G <martg_@hotmail.com>2021-10-06 14:27:25 +0200
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-10-07 08:46:15 +0330
commit5f53dc6a45c9b70d78981a2eb01e2026f03a1a03 (patch)
treeb62719b1acf00d784b055c175142e57f6d4dd079 /Userland/Applications/SpaceAnalyzer/TreeMapWidget.h
parentc569ed7e8bbe5277194a8cc7038be1b1e55e7455 (diff)
downloadserenity-5f53dc6a45c9b70d78981a2eb01e2026f03a1a03.zip
SpaceAnalyzer: Fix rendering bug when dealing with large file systems
Diffstat (limited to 'Userland/Applications/SpaceAnalyzer/TreeMapWidget.h')
-rw-r--r--Userland/Applications/SpaceAnalyzer/TreeMapWidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/SpaceAnalyzer/TreeMapWidget.h b/Userland/Applications/SpaceAnalyzer/TreeMapWidget.h
index 3dec6f2ce8..0fb5dc2268 100644
--- a/Userland/Applications/SpaceAnalyzer/TreeMapWidget.h
+++ b/Userland/Applications/SpaceAnalyzer/TreeMapWidget.h
@@ -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;