mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 00:37:35 +00:00
Everywhere: Rename to_{string => deprecated_string}() where applicable
This will make it easier to support both string types at the same time while we convert code, and tracking down remaining uses. One big exception is Value::to_string() in LibJS, where the name is dictated by the ToString AO.
This commit is contained in:
parent
6e19ab2bbc
commit
57dc179b1f
597 changed files with 1973 additions and 1972 deletions
|
@ -25,7 +25,7 @@ public:
|
|||
virtual void paint(GUI::Painter& painter, Gfx::IntRect const& a_rect, Gfx::Palette const&, const GUI::ModelIndex& index) override
|
||||
{
|
||||
auto rect = a_rect.shrunken(2, 2);
|
||||
auto pagemap = index.data(GUI::ModelRole::Custom).to_string();
|
||||
auto pagemap = index.data(GUI::ModelRole::Custom).to_deprecated_string();
|
||||
|
||||
float scale_factor = (float)pagemap.length() / (float)rect.width();
|
||||
|
||||
|
@ -76,10 +76,10 @@ ProcessMemoryMapWidget::ProcessMemoryMapWidget()
|
|||
builder.append('C');
|
||||
if (object.get("stack"sv).to_bool())
|
||||
builder.append('T');
|
||||
return builder.to_string();
|
||||
return builder.to_deprecated_string();
|
||||
});
|
||||
pid_vm_fields.empend("VMObject type", Gfx::TextAlignment::CenterLeft, [](auto& object) {
|
||||
auto type = object.get("vmobject"sv).to_string();
|
||||
auto type = object.get("vmobject"sv).to_deprecated_string();
|
||||
if (type.ends_with("VMObject"sv))
|
||||
type = type.substring(0, type.length() - 8);
|
||||
return type;
|
||||
|
|
|
@ -132,7 +132,7 @@ public:
|
|||
size_builder.append(' ');
|
||||
size_builder.append(human_readable_size(object.get("total_block_count"sv).to_u64() * object.get("block_size"sv).to_u64()));
|
||||
size_builder.append(' ');
|
||||
return size_builder.to_string();
|
||||
return size_builder.to_deprecated_string();
|
||||
},
|
||||
[](const JsonObject& object) {
|
||||
return object.get("total_block_count"sv).to_u64() * object.get("block_size"sv).to_u64();
|
||||
|
@ -194,7 +194,7 @@ public:
|
|||
check(MS_NOREGULAR, "noregular"sv);
|
||||
if (builder.string_view().is_empty())
|
||||
return DeprecatedString("defaults");
|
||||
return builder.to_string();
|
||||
return builder.to_deprecated_string();
|
||||
});
|
||||
df_fields.empend("free_block_count", "Free blocks", Gfx::TextAlignment::CenterRight);
|
||||
df_fields.empend("total_block_count", "Total blocks", Gfx::TextAlignment::CenterRight);
|
||||
|
@ -339,7 +339,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
if (process_table_view.selection().is_empty())
|
||||
return {};
|
||||
auto pid_index = process_table_view.model()->index(process_table_view.selection().first().row(), column, process_table_view.selection().first().parent());
|
||||
return pid_index.data().to_string();
|
||||
return pid_index.data().to_deprecated_string();
|
||||
};
|
||||
|
||||
auto kill_action = GUI::Action::create(
|
||||
|
@ -528,7 +528,7 @@ ErrorOr<NonnullRefPtr<GUI::Window>> build_process_window(pid_t pid)
|
|||
main_widget->find_descendant_of_type_named<GUI::Label>("icon_label")->set_icon(icon_data.as_icon().bitmap_for_size(32));
|
||||
}
|
||||
|
||||
main_widget->find_descendant_of_type_named<GUI::Label>("process_name")->set_text(DeprecatedString::formatted("{} (PID {})", process_index.sibling_at_column(ProcessModel::Column::Name).data().to_string(), pid));
|
||||
main_widget->find_descendant_of_type_named<GUI::Label>("process_name")->set_text(DeprecatedString::formatted("{} (PID {})", process_index.sibling_at_column(ProcessModel::Column::Name).data().to_deprecated_string(), pid));
|
||||
|
||||
main_widget->find_descendant_of_type_named<SystemMonitor::ProcessStateWidget>("process_state")->set_pid(pid);
|
||||
main_widget->find_descendant_of_type_named<SystemMonitor::ProcessFileDescriptorMapWidget>("open_files")->set_pid(pid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue