summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp
diff options
context:
space:
mode:
authorCameron Youell <cameronyouell@gmail.com>2023-03-24 20:57:53 +1100
committerLinus Groh <mail@linusgroh.de>2023-03-24 10:58:43 +0000
commitc048cf2004c9cda9ed6533b81b586600b740c14b (patch)
treed05125d7bcb23989fb1214fe70960d420ba96da7 /Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp
parent1dc3ba6ed5bfbb0055d9335a32f580a73f3ab254 (diff)
downloadserenity-c048cf2004c9cda9ed6533b81b586600b740c14b.zip
Libraries: Convert `DeprecatedFile` usages to `LibFileSystem`
Diffstat (limited to 'Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp')
-rw-r--r--Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp b/Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp
index 062cb423ff..512e0a4227 100644
--- a/Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp
+++ b/Userland/Libraries/LibGUI/PathBreadcrumbbar.cpp
@@ -110,7 +110,7 @@ void PathBreadcrumbbar::set_current_path(DeprecatedString const& new_path)
} else {
m_breadcrumbbar->clear_segments();
- m_breadcrumbbar->append_segment("/", GUI::FileIconProvider::icon_for_path("/").bitmap_for_size(16), "/", "/");
+ m_breadcrumbbar->append_segment("/", GUI::FileIconProvider::icon_for_path("/"sv).bitmap_for_size(16), "/", "/");
StringBuilder builder;
for (auto& part : lexical_path.parts()) {