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:
parent
265e2832ef
commit
e377b508b7
2 changed files with 27 additions and 27 deletions
|
@ -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 };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue