Skip to content

Commit 8afaa70

Browse files
committed
Regenerate with latest gir / gir-files
1 parent f6ccc4d commit 8afaa70

File tree

22 files changed

+35
-26
lines changed

22 files changed

+35
-26
lines changed

gdk-pixbuf/src/auto/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81)
1+
Generated by gir (https://github.com/gtk-rs/gir @ d7ce1bd186a7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7af0e711383)

gdk-pixbuf/sys/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81)
1+
Generated by gir (https://github.com/gtk-rs/gir @ d7ce1bd186a7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ f7af0e711383)

gio/src/auto/application.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ impl ApplicationBuilder {
124124
/// Build the [`Application`].
125125
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
126126
pub fn build(self) -> Application {
127+
assert_initialized_main_thread!();
127128
self.builder.build()
128129
}
129130
}

gio/src/auto/buffered_input_stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ impl BufferedInputStreamBuilder {
100100
/// Build the [`BufferedInputStream`].
101101
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
102102
pub fn build(self) -> BufferedInputStream {
103+
assert_initialized_main_thread!();
103104
self.builder.build()
104105
}
105106
}

gio/src/auto/buffered_output_stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ impl BufferedOutputStreamBuilder {
106106
/// Build the [`BufferedOutputStream`].
107107
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
108108
pub fn build(self) -> BufferedOutputStream {
109+
assert_initialized_main_thread!();
109110
self.builder.build()
110111
}
111112
}

gio/src/auto/charset_converter.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ impl CharsetConverterBuilder {
151151
/// Build the [`CharsetConverter`].
152152
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
153153
pub fn build(self) -> CharsetConverter {
154+
assert_initialized_main_thread!();
154155
self.builder.build()
155156
}
156157
}

gio/src/auto/converter_input_stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ impl ConverterInputStreamBuilder {
9090
/// Build the [`ConverterInputStream`].
9191
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
9292
pub fn build(self) -> ConverterInputStream {
93+
assert_initialized_main_thread!();
9394
self.builder.build()
9495
}
9596
}

gio/src/auto/converter_output_stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ impl ConverterOutputStreamBuilder {
9090
/// Build the [`ConverterOutputStream`].
9191
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
9292
pub fn build(self) -> ConverterOutputStream {
93+
assert_initialized_main_thread!();
9394
self.builder.build()
9495
}
9596
}

gio/src/auto/data_input_stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ impl DataInputStreamBuilder {
103103
/// Build the [`DataInputStream`].
104104
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
105105
pub fn build(self) -> DataInputStream {
106+
assert_initialized_main_thread!();
106107
self.builder.build()
107108
}
108109
}

gio/src/auto/data_output_stream.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ impl DataOutputStreamBuilder {
8888
/// Build the [`DataOutputStream`].
8989
#[must_use = "Building the object from the builder is usually expensive and is not expected to have side effects"]
9090
pub fn build(self) -> DataOutputStream {
91+
assert_initialized_main_thread!();
9192
self.builder.build()
9293
}
9394
}

0 commit comments

Comments
 (0)