diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-24 17:11:42 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-24 17:11:42 +0200 |
commit | 677794f30d6d365a714aea3edbeb4a7668a96afc (patch) | |
tree | 88aea00328cb0a7a3fc65a4e6f313c80a5e9e14a /Userland | |
parent | 21c56477b046a7e22c8cd7c675b9459ee794df43 (diff) | |
download | serenity-677794f30d6d365a714aea3edbeb4a7668a96afc.zip |
LibGUI: Make GCheckBox inherit from GAbstractButton.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/guitest2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/guitest2.cpp b/Userland/guitest2.cpp index 39f9082559..79c229c8f8 100644 --- a/Userland/guitest2.cpp +++ b/Userland/guitest2.cpp @@ -113,7 +113,7 @@ GWindow* make_launcher_window() auto* checkbox = new GCheckBox(widget); checkbox->set_relative_rect({ 5, 170, 90, 20 }); - checkbox->set_caption("CheckBox"); + checkbox->set_text("CheckBox"); window->set_focused_widget(textbox); |