Browse Source

SystemMonitor: Remove GML references to the deleted Hardware tab

Liav A 3 years ago
parent
commit
488f22941b

+ 0 - 4
Base/usr/share/man/man5/GML-Syntax.md

@@ -221,10 +221,6 @@ GML files can be found in the SerenityOS source tree with the `*.gml` extension.
                 title: "Network"
                 title: "Network"
                 name: "network"
                 name: "network"
             }
             }
-
-            @SystemMonitor::HardwareTabWidget {
-                // snip
-            }
         }
         }
     }
     }
 
 

+ 0 - 31
Userland/Applications/SystemMonitor/SystemMonitor.gml

@@ -81,37 +81,6 @@
                 title: "Network"
                 title: "Network"
                 name: "network"
                 name: "network"
             }
             }
-
-            @SystemMonitor::HardwareTabWidget {
-                title: "Hardware"
-                name: "hardware"
-                layout: @GUI::VerticalBoxLayout {
-                    margins: [4]
-                }
-
-                @GUI::GroupBox {
-                    title: "CPUs"
-                    fixed_height: 128
-                    layout: @GUI::VerticalBoxLayout {
-                        margins: [6]
-                    }
-
-                    @GUI::TableView {
-                        name: "cpus_table"
-                    }
-                }
-
-                @GUI::GroupBox {
-                    title: "PCI devices"
-                    layout: @GUI::VerticalBoxLayout {
-                        margins: [6]
-                    }
-
-                    @GUI::TableView {
-                        name: "pci_dev_table"
-                    }
-                }
-            }
         }
         }
     }
     }