LibGUI: Convert GLabel to ObjectPtr

This commit is contained in:
Andreas Kling 2019-09-21 14:19:05 +02:00
commit c7437f9caa
Notes: sideshowbarker 2024-07-19 12:02:31 +09:00
22 changed files with 47 additions and 45 deletions

View file

@ -50,9 +50,9 @@ int main(int argc, char** argv)
progress1->set_value(progress1->min());
});
auto* label1 = new GLabel("GLabel 1", main_widget);
auto label1 = GLabel::construct("GLabel 1", main_widget);
(void)label1;
auto* label2 = new GLabel("GLabel 2", main_widget);
auto label2 = GLabel::construct("GLabel 2", main_widget);
label2->set_enabled(false);
auto* textbox1 = new GTextBox(main_widget);