mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 05:08:56 +00:00
LibCore: Remove ObjectPtr in favor of RefPtr
Now that CObject is fully ref-counted, just use RefPtr everywhere! :^)
This commit is contained in:
@@ -39,9 +39,9 @@ static String human_readable_size(u32 size)
|
||||
return String::format("%u GB", size / GB);
|
||||
}
|
||||
|
||||
static ObjectPtr<GWidget> build_file_systems_tab();
|
||||
static ObjectPtr<GWidget> build_pci_devices_tab();
|
||||
static ObjectPtr<GWidget> build_devices_tab();
|
||||
static RefPtr<GWidget> build_file_systems_tab();
|
||||
static RefPtr<GWidget> build_pci_devices_tab();
|
||||
static RefPtr<GWidget> build_devices_tab();
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
@@ -234,7 +234,7 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
ObjectPtr<GWidget> build_file_systems_tab()
|
||||
RefPtr<GWidget> build_file_systems_tab()
|
||||
{
|
||||
auto fs_widget = GWidget::construct();
|
||||
fs_widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
|
||||
@@ -299,7 +299,7 @@ ObjectPtr<GWidget> build_file_systems_tab()
|
||||
return fs_widget;
|
||||
}
|
||||
|
||||
ObjectPtr<GWidget> build_pci_devices_tab()
|
||||
RefPtr<GWidget> build_pci_devices_tab()
|
||||
{
|
||||
auto pci_widget = GWidget::construct();
|
||||
pci_widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
|
||||
@@ -353,7 +353,7 @@ ObjectPtr<GWidget> build_pci_devices_tab()
|
||||
return pci_widget;
|
||||
}
|
||||
|
||||
ObjectPtr<GWidget> build_devices_tab()
|
||||
RefPtr<GWidget> build_devices_tab()
|
||||
{
|
||||
auto devices_widget = GWidget::construct();
|
||||
devices_widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
|
||||
|
||||
Reference in New Issue
Block a user