1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

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
parent 265e2832ef
commit e377b508b7
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 };