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

Misc: Replace "String(string_view)" with "string_view.to_string()"

StringView::to_string() was added in 917ccb1 but not actually used
anywhere yet.
This commit is contained in:
Linus Groh 2020-05-06 18:18:24 +01:00 committed by Andreas Kling
parent 107ca2e4ba
commit 9dbab2d05e
10 changed files with 11 additions and 11 deletions

View file

@ -33,7 +33,7 @@ DirIterator::DirIterator(const StringView& path, Flags flags)
: m_path(path)
, m_flags(flags)
{
m_dir = opendir(String(path).characters());
m_dir = opendir(path.to_string().characters());
if (!m_dir) {
m_error = errno;
}

View file

@ -307,7 +307,7 @@ void FilePicker::on_file_return()
bool FilePicker::file_exists(const StringView& path)
{
struct stat st;
int rc = stat(String(path).characters(), &st);
int rc = stat(path.to_string().characters(), &st);
if (rc < 0) {
if (errno == ENOENT)
return false;

View file

@ -94,8 +94,8 @@ void IconImpl::set_bitmap_for_size(int size, RefPtr<Gfx::Bitmap>&& bitmap)
Icon Icon::default_icon(const StringView& name)
{
auto bitmap16 = Gfx::Bitmap::load_from_file(String::format("/res/icons/16x16/%s.png", String(name).characters()));
auto bitmap32 = Gfx::Bitmap::load_from_file(String::format("/res/icons/32x32/%s.png", String(name).characters()));
auto bitmap16 = Gfx::Bitmap::load_from_file(String::format("/res/icons/16x16/%s.png", name.to_string().characters()));
auto bitmap32 = Gfx::Bitmap::load_from_file(String::format("/res/icons/32x32/%s.png", name.to_string().characters()));
return Icon(move(bitmap16), move(bitmap32));
}

View file

@ -194,7 +194,7 @@ Bitmap::~Bitmap()
void Bitmap::set_mmap_name(const StringView& name)
{
ASSERT(m_needs_munmap);
::set_mmap_name(m_data, size_in_bytes(), String(name).characters());
::set_mmap_name(m_data, size_in_bytes(), name.to_string().characters());
}
void Bitmap::fill(Color color)

View file

@ -182,7 +182,7 @@ static Optional<Color> parse_rgba_color(const StringView& string)
if (!ok)
return {};
double alpha = strtod(String(parts[3]).characters(), nullptr);
double alpha = strtod(parts[3].to_string().characters(), nullptr);
int a = alpha * 255;
if (r < 0 || r > 255)