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
|
@ -1,7 +1,7 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Widget {
|
||||
mime-types [];
|
||||
patterns [];
|
||||
suffixes [];
|
||||
mime-types []
|
||||
patterns []
|
||||
suffixes []
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
4,3,14,Gtk.Widget is not a Gtk.FileFilter, so it doesn't have file filter properties
|
||||
5,3,12,Gtk.Widget is not a Gtk.FileFilter, so it doesn't have file filter properties
|
||||
6,3,12,Gtk.Widget is not a Gtk.FileFilter, so it doesn't have file filter properties
|
||||
4,3,13,Gtk.Widget is not a Gtk.FileFilter, so it doesn't have file filter properties
|
||||
5,3,11,Gtk.Widget is not a Gtk.FileFilter, so it doesn't have file filter properties
|
||||
6,3,11,Gtk.Widget is not a Gtk.FileFilter, so it doesn't have file filter properties
|
||||
|
|
|
@ -3,7 +3,7 @@ using Gtk 4.0;
|
|||
StringList {
|
||||
strings [
|
||||
id,
|
||||
];
|
||||
]
|
||||
}
|
||||
|
||||
Widget id {}
|
||||
|
|
|
@ -3,7 +3,7 @@ using GObject 2.0;
|
|||
|
||||
SizeGroup {
|
||||
mode: horizontal;
|
||||
widgets [object];
|
||||
widgets [object]
|
||||
}
|
||||
|
||||
GObject.Object object {}
|
||||
|
|
|
@ -3,5 +3,5 @@ using GObject 2.0;
|
|||
|
||||
SizeGroup {
|
||||
mode: horizontal;
|
||||
widgets [object];
|
||||
widgets [object]
|
||||
}
|
||||
|
|
|
@ -2,5 +2,5 @@ using Gtk 4.0;
|
|||
using GObject 2.0;
|
||||
|
||||
GObject.Object {
|
||||
styles [];
|
||||
styles []
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Widget {
|
||||
widgets [];
|
||||
widgets []
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue