diff options
author | Edgar Araújo <edgararaj@gmail.com> | 2021-03-21 19:42:30 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-29 09:10:23 +0200 |
commit | 243d7d9ecf3bef98ec3888b1c18116cb77a19b1d (patch) | |
tree | aae444bf1649773dcecba0dbb954b8a90f68f23d /Userland/Applications/Calculator | |
parent | 76d4b2c5a466fd762558133521a3de27e296dfd0 (diff) | |
download | serenity-243d7d9ecf3bef98ec3888b1c18116cb77a19b1d.zip |
Everywhere: Remove empty {} from GML objects
Diffstat (limited to 'Userland/Applications/Calculator')
-rw-r--r-- | Userland/Applications/Calculator/CalculatorWindow.gml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Userland/Applications/Calculator/CalculatorWindow.gml b/Userland/Applications/Calculator/CalculatorWindow.gml index a311e0cb92..ef5a4051e3 100644 --- a/Userland/Applications/Calculator/CalculatorWindow.gml +++ b/Userland/Applications/Calculator/CalculatorWindow.gml @@ -12,8 +12,7 @@ } @GUI::Widget { - layout: @GUI::HorizontalBoxLayout { - } + layout: @GUI::HorizontalBoxLayout @GUI::Label { name: "label" @@ -51,8 +50,7 @@ } @GUI::Widget { - layout: @GUI::HorizontalBoxLayout { - } + layout: @GUI::HorizontalBoxLayout @GUI::Button { name: "mem_clear_button" @@ -107,7 +105,7 @@ } @GUI::Widget { - layout: @GUI::HorizontalBoxLayout {} + layout: @GUI::HorizontalBoxLayout @GUI::Button { name: "mem_recall_button" @@ -162,7 +160,7 @@ } @GUI::Widget { - layout: @GUI::HorizontalBoxLayout {} + layout: @GUI::HorizontalBoxLayout @GUI::Button { name: "mem_save_button" @@ -217,7 +215,7 @@ } @GUI::Widget { - layout: @GUI::HorizontalBoxLayout {} + layout: @GUI::HorizontalBoxLayout @GUI::Button { name: "mem_add_button" |