1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:37:36 +00:00

Everywhere: "file name" => "filename"

This commit is contained in:
Andreas Kling 2021-04-29 21:46:15 +02:00
parent def1f1444a
commit 7ae7170d61
59 changed files with 181 additions and 181 deletions

View file

@ -47,14 +47,14 @@ public:
void remove_group(const String& group);
void remove_entry(const String& group, const String& key);
String file_name() const { return m_file_name; }
String filename() const { return m_filename; }
private:
explicit ConfigFile(const String& file_name);
explicit ConfigFile(const String& filename);
void reparse();
String m_file_name;
String m_filename;
HashMap<String, HashMap<String, String>> m_groups;
bool m_dirty { false };
};