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

Kernel+SystemMonitor+lscpu: Rename 'CPUID' -> 'Vendor ID'

This is what the Intel manual, as well as Linux's cpuinfo calls it.
This commit is contained in:
Linus Groh 2022-04-03 17:09:29 +01:00 committed by Andreas Kling
parent 3f9c2495e5
commit 0f27432ec6
3 changed files with 4 additions and 5 deletions

View file

@ -133,7 +133,7 @@ public:
{
Vector<GUI::JsonArrayModel::FieldSpec> processors_field;
processors_field.empend("processor", "Processor", Gfx::TextAlignment::CenterRight);
processors_field.empend("cpuid", "CPUID", Gfx::TextAlignment::CenterLeft);
processors_field.empend("vendor_id", "Vendor ID", Gfx::TextAlignment::CenterLeft);
processors_field.empend("brand", "Brand", Gfx::TextAlignment::CenterLeft);
processors_field.empend("Features", Gfx::TextAlignment::CenterLeft, [](auto& object) {
StringBuilder builder;