1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

AK+Everywhere: Rename String to DeprecatedString

We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
This commit is contained in:
Linus Groh 2022-12-04 18:02:33 +00:00 committed by Andreas Kling
parent f74251606d
commit 6e19ab2bbc
2006 changed files with 11635 additions and 11636 deletions

View file

@ -37,14 +37,14 @@ class UnregisteredWidget final : public GUI::Widget {
C_OBJECT(UnregisteredWidget);
private:
UnregisteredWidget(String const& class_name);
UnregisteredWidget(DeprecatedString const& class_name);
virtual void paint_event(GUI::PaintEvent& event) override;
String m_text;
DeprecatedString m_text;
};
UnregisteredWidget::UnregisteredWidget(String const& class_name)
UnregisteredWidget::UnregisteredWidget(DeprecatedString const& class_name)
{
StringBuilder builder;
builder.append(class_name);
@ -104,7 +104,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
editor->set_automatic_indentation_enabled(true);
editor->set_ruler_visible(true);
String file_path;
DeprecatedString file_path;
auto update_title = [&] {
StringBuilder builder;
if (file_path.is_empty())
@ -121,7 +121,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
editor->on_change = [&] {
preview->remove_all_children();
preview->load_from_gml(editor->text(), [](const String& class_name) -> RefPtr<Core::Object> {
preview->load_from_gml(editor->text(), [](const DeprecatedString& class_name) -> RefPtr<Core::Object> {
return UnregisteredWidget::construct(class_name);
});
};
@ -212,7 +212,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
} else {
GUI::MessageBox::show(
window,
String::formatted("GML could not be formatted: {}", formatted_gml_or_error.error()),
DeprecatedString::formatted("GML could not be formatted: {}", formatted_gml_or_error.error()),
"Error"sv,
GUI::MessageBox::Type::Error);
}
@ -286,7 +286,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
window->show();
if (String(path).is_empty()) {
if (DeprecatedString(path).is_empty()) {
editor->set_text(R"~~~(@GUI::Frame {
layout: @GUI::VerticalBoxLayout {
}