diff options
author | Sergey Bugaev <bugaevc@serenityos.org> | 2020-05-26 14:52:44 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-26 14:35:10 +0200 |
commit | 602c3fdb3a0975418886e32cf9cc53b45d2f8964 (patch) | |
tree | 079b3ebdaf7db517625496e35acf1158adacad77 /Applications/HexEditor/HexEditorWidget.h | |
parent | f746bbda174d914d5de9379084a6fb2095c58d68 (diff) | |
download | serenity-602c3fdb3a0975418886e32cf9cc53b45d2f8964.zip |
AK: Rename FileSystemPath -> LexicalPath
And move canonicalized_path() to a static method on LexicalPath.
This is to make it clear that FileSystemPath/canonicalized_path() only
perform *lexical* canonicalization.
Diffstat (limited to 'Applications/HexEditor/HexEditorWidget.h')
-rw-r--r-- | Applications/HexEditor/HexEditorWidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/HexEditor/HexEditorWidget.h b/Applications/HexEditor/HexEditorWidget.h index 8661a92ccc..55152518ab 100644 --- a/Applications/HexEditor/HexEditorWidget.h +++ b/Applications/HexEditor/HexEditorWidget.h @@ -27,8 +27,8 @@ #pragma once #include "HexEditor.h" -#include <AK/FileSystemPath.h> #include <AK/Function.h> +#include <AK/LexicalPath.h> #include <LibGUI/Application.h> #include <LibGUI/TextEditor.h> #include <LibGUI/Widget.h> @@ -45,7 +45,7 @@ public: private: HexEditorWidget(); - void set_path(const FileSystemPath& file); + void set_path(const LexicalPath& file); void update_title(); RefPtr<HexEditor> m_editor; |