mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
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:
parent
878ff1b37b
commit
be3c0de670
18 changed files with 24 additions and 24 deletions
|
@ -5,5 +5,5 @@ ComboBoxText {
|
|||
"Hello, world!",
|
||||
_("Hello!"),
|
||||
item_id: "item",
|
||||
];
|
||||
]
|
||||
}
|
||||
|
|
|
@ -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"]
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ using Gtk 4.0;
|
|||
|
||||
SizeGroup {
|
||||
mode: horizontal;
|
||||
widgets [label, button];
|
||||
widgets [label, button]
|
||||
}
|
||||
|
||||
Label label {}
|
||||
|
|
|
@ -4,5 +4,5 @@ StringList {
|
|||
strings [
|
||||
"Hello, world!",
|
||||
_("Hello!"),
|
||||
];
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Label {
|
||||
styles ["class-1", "class-2"];
|
||||
styles ["class-1", "class-2"]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue