mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +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
Notes:
sideshowbarker
2024-07-18 07:14:33 +09:00
Author: https://github.com/sin-ack
Commit: e377b508b7
Pull-request: https://github.com/SerenityOS/serenity/pull/9269
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/awesomekling
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