Remove some semicolons

Remove semicolons everywhere except 'using' statements, properties,
attributes, and signals.

This should be the last breaking change to the syntax.
This commit is contained in:
James Westman 2021-11-30 21:01:49 -06:00
parent 878ff1b37b
commit be3c0de670
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
18 changed files with 24 additions and 24 deletions

View file

@ -5,5 +5,5 @@ ComboBoxText {
"Hello, world!",
_("Hello!"),
item_id: "item",
];
]
}

View file

@ -2,7 +2,7 @@ using Gtk 4.0;
FileFilter {
name: "File Filter Name";
mime-types ["text/plain", "image/ *"];
patterns ["*.txt"];
suffixes ["png"];
mime-types ["text/plain", "image/ *"]
patterns ["*.txt"]
suffixes ["png"]
}

View file

@ -2,7 +2,7 @@ using Gtk 4.0;
SizeGroup {
mode: horizontal;
widgets [label, button];
widgets [label, button]
}
Label label {}

View file

@ -4,5 +4,5 @@ StringList {
strings [
"Hello, world!",
_("Hello!"),
];
]
}

View file

@ -1,5 +1,5 @@
using Gtk 4.0;
Label {
styles ["class-1", "class-2"];
styles ["class-1", "class-2"]
}