Skip to content

Commit e6521c7

Browse files
Regenerate with latest gir-files
1 parent 9e40246 commit e6521c7

File tree

22 files changed

+165
-12
lines changed

22 files changed

+165
-12
lines changed

gdk4-wayland/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gdk4-wayland/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gdk4-win32/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gdk4-win32/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gdk4-x11/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gdk4-x11/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gdk4/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gdk4/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 7498349606e5)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 58cd940295f0)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)

gsk4/src/auto/enums.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,8 @@ pub enum PathOperation {
996996
Quad,
997997
#[doc(alias = "GSK_PATH_CUBIC")]
998998
Cubic,
999+
#[doc(alias = "GSK_PATH_ARC")]
1000+
Arc,
9991001
#[doc(hidden)]
10001002
__Unknown(i32),
10011003
}
@@ -1014,6 +1016,7 @@ impl IntoGlib for PathOperation {
10141016
Self::Line => ffi::GSK_PATH_LINE,
10151017
Self::Quad => ffi::GSK_PATH_QUAD,
10161018
Self::Cubic => ffi::GSK_PATH_CUBIC,
1019+
Self::Arc => ffi::GSK_PATH_ARC,
10171020
Self::__Unknown(value) => value,
10181021
}
10191022
}
@@ -1033,6 +1036,7 @@ impl FromGlib<ffi::GskPathOperation> for PathOperation {
10331036
ffi::GSK_PATH_LINE => Self::Line,
10341037
ffi::GSK_PATH_QUAD => Self::Quad,
10351038
ffi::GSK_PATH_CUBIC => Self::Cubic,
1039+
ffi::GSK_PATH_ARC => Self::Arc,
10361040
value => Self::__Unknown(value),
10371041
}
10381042
}

gsk4/src/auto/flags.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ bitflags! {
1818
const QUAD = ffi::GSK_PATH_FOREACH_ALLOW_QUAD as _;
1919
#[doc(alias = "GSK_PATH_FOREACH_ALLOW_CUBIC")]
2020
const CUBIC = ffi::GSK_PATH_FOREACH_ALLOW_CUBIC as _;
21+
#[doc(alias = "GSK_PATH_FOREACH_ALLOW_ARC")]
22+
const ARC = ffi::GSK_PATH_FOREACH_ALLOW_ARC as _;
2123
}
2224
}
2325

0 commit comments

Comments
 (0)