diff options
Diffstat (limited to 'Userland/Libraries/LibGfx/BMPLoader.cpp')
-rw-r--r-- | Userland/Libraries/LibGfx/BMPLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGfx/BMPLoader.cpp b/Userland/Libraries/LibGfx/BMPLoader.cpp index f009b36e5d..bc2dbf868f 100644 --- a/Userland/Libraries/LibGfx/BMPLoader.cpp +++ b/Userland/Libraries/LibGfx/BMPLoader.cpp @@ -186,7 +186,7 @@ struct BMPLoadingContext { static RefPtr<Bitmap> load_bmp_impl(const u8*, size_t); -RefPtr<Gfx::Bitmap> load_bmp(const StringView& path) +RefPtr<Gfx::Bitmap> load_bmp(String const& path) { auto file_or_error = MappedFile::map(path); if (file_or_error.is_error()) |