Skip to content

Commit 6288f51

Browse files
Regenerate with latest gir-files
1 parent 5d25c87 commit 6288f51

File tree

19 files changed

+174
-24
lines changed

19 files changed

+174
-24
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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

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 @ c9d6716deb95)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ f7bd385f54ce)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 615ef8fb32f2)

gsk4/src/auto/enums.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -988,8 +988,8 @@ pub enum PathOperation {
988988
Quad,
989989
#[doc(alias = "GSK_PATH_CUBIC")]
990990
Cubic,
991-
#[doc(alias = "GSK_PATH_ARC")]
992-
Arc,
991+
#[doc(alias = "GSK_PATH_CONIC")]
992+
Conic,
993993
#[doc(hidden)]
994994
__Unknown(i32),
995995
}
@@ -1008,7 +1008,7 @@ impl IntoGlib for PathOperation {
10081008
Self::Line => ffi::GSK_PATH_LINE,
10091009
Self::Quad => ffi::GSK_PATH_QUAD,
10101010
Self::Cubic => ffi::GSK_PATH_CUBIC,
1011-
Self::Arc => ffi::GSK_PATH_ARC,
1011+
Self::Conic => ffi::GSK_PATH_CONIC,
10121012
Self::__Unknown(value) => value,
10131013
}
10141014
}
@@ -1028,7 +1028,7 @@ impl FromGlib<ffi::GskPathOperation> for PathOperation {
10281028
ffi::GSK_PATH_LINE => Self::Line,
10291029
ffi::GSK_PATH_QUAD => Self::Quad,
10301030
ffi::GSK_PATH_CUBIC => Self::Cubic,
1031-
ffi::GSK_PATH_ARC => Self::Arc,
1031+
ffi::GSK_PATH_CONIC => Self::Conic,
10321032
value => Self::__Unknown(value),
10331033
}
10341034
}

gsk4/src/auto/flags.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +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 _;
21+
#[doc(alias = "GSK_PATH_FOREACH_ALLOW_CONIC")]
22+
const CONIC = ffi::GSK_PATH_FOREACH_ALLOW_CONIC as _;
2323
}
2424
}
2525

0 commit comments

Comments
 (0)