LibGUI: Prefix some private FileSystemModel::Node members with m_

This commit has no functional changes.
This commit is contained in:
sin-ack 2021-08-08 10:00:13 +00:00 committed by Andreas Kling
commit e377b508b7
Notes: sideshowbarker 2024-07-18 07:14:33 +09:00
2 changed files with 27 additions and 27 deletions

View file

@ -81,9 +81,9 @@ public:
FileSystemModel& m_model;
Node* parent { nullptr };
NonnullOwnPtrVector<Node> children;
bool has_traversed { false };
Node* m_parent { nullptr };
NonnullOwnPtrVector<Node> m_children;
bool m_has_traversed { false };
bool m_selected { false };