mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-25 18:52:22 -05:00
FontEditor: Use new format functions.
This commit is contained in:
parent
93d04b9f8d
commit
30b9dff5aa
Notes:
sideshowbarker
2024-07-19 02:01:27 +09:00
Author: https://github.com/asynts Commit: https://github.com/SerenityOS/serenity/commit/30b9dff5aa6 Pull-request: https://github.com/SerenityOS/serenity/pull/3696 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/emanuele6
1 changed files with 4 additions and 4 deletions
|
@ -66,7 +66,7 @@ int main(int argc, char** argv)
|
||||||
} else {
|
} else {
|
||||||
edited_font = Gfx::Font::load_from_file(path)->clone();
|
edited_font = Gfx::Font::load_from_file(path)->clone();
|
||||||
if (!edited_font) {
|
if (!edited_font) {
|
||||||
String message = String::format("Couldn't load font: %s\n", path);
|
String message = String::formatted("Couldn't load font: {}\n", path);
|
||||||
GUI::MessageBox::show(nullptr, message, "Font Editor", GUI::MessageBox::Type::Error);
|
GUI::MessageBox::show(nullptr, message, "Font Editor", GUI::MessageBox::Type::Error);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ int main(int argc, char** argv)
|
||||||
if (font->type() == Gfx::FontTypes::Default)
|
if (font->type() == Gfx::FontTypes::Default)
|
||||||
font->set_type(Gfx::FontTypes::LatinExtendedA);
|
font->set_type(Gfx::FontTypes::LatinExtendedA);
|
||||||
|
|
||||||
window->set_title(String::format("%s - Font Editor", path.characters()));
|
window->set_title(String::formatted("{} - Font Editor", path));
|
||||||
auto& font_editor_widget = window->set_main_widget<FontEditorWidget>(path, move(font));
|
auto& font_editor_widget = window->set_main_widget<FontEditorWidget>(path, move(font));
|
||||||
window->set_rect({ point, { font_editor_widget.preferred_width(), font_editor_widget.preferred_height() } });
|
window->set_rect({ point, { font_editor_widget.preferred_width(), font_editor_widget.preferred_height() } });
|
||||||
};
|
};
|
||||||
|
@ -98,7 +98,7 @@ int main(int argc, char** argv)
|
||||||
|
|
||||||
RefPtr<Gfx::Font> new_font = Gfx::Font::load_from_file(open_path.value())->clone();
|
RefPtr<Gfx::Font> new_font = Gfx::Font::load_from_file(open_path.value())->clone();
|
||||||
if (!new_font) {
|
if (!new_font) {
|
||||||
String message = String::format("Couldn't load font: %s\n", open_path.value().characters());
|
String message = String::formatted("Couldn't load font: {}\n", open_path.value());
|
||||||
GUI::MessageBox::show(window, message, "Font Editor", GUI::MessageBox::Type::Error);
|
GUI::MessageBox::show(window, message, "Font Editor", GUI::MessageBox::Type::Error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -117,7 +117,7 @@ int main(int argc, char** argv)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (editor->save_as(save_path.value()))
|
if (editor->save_as(save_path.value()))
|
||||||
window->set_title(String::format("%s - Font Editor", save_path.value().characters()));
|
window->set_title(String::formatted("{} - Font Editor", save_path.value()));
|
||||||
}));
|
}));
|
||||||
app_menu.add_separator();
|
app_menu.add_separator();
|
||||||
app_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) {
|
app_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue