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

SpaceAnalyzer: Rename TreeMapWidget::m_path -> m_path_segments

This is clearer to me at least.
This commit is contained in:
Sam Atkins 2023-02-03 16:05:30 +00:00 committed by Andreas Kling
parent 87f4c9e580
commit ad92b16887
2 changed files with 17 additions and 17 deletions

View file

@ -54,8 +54,8 @@ private:
void recalculate_path_for_new_tree();
OwnPtr<Tree> m_tree;
Vector<DeprecatedString> m_path;
size_t m_viewpoint { 0 };
Vector<DeprecatedString> m_path_segments;
size_t m_viewpoint { 0 }; // Current position within m_path_segments.
void const* m_selected_node_cache;
};