Skip to content

Commit 591bb05

Browse files
authored
Merge pull request #1602 from sdroege/update-gir-files
Update gir-files / gir
2 parents 83f2e55 + 1d874c4 commit 591bb05

File tree

90 files changed

+331
-322
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+331
-322
lines changed

Cargo.lock

Lines changed: 53 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gdk-pixbuf/src/auto/pixbuf_loader.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + 'static {
166166
let f: Box_<F> = Box_::new(f);
167167
connect_raw(
168168
self.as_ptr() as *mut _,
169-
b"area-prepared\0".as_ptr() as *const _,
169+
c"area-prepared".as_ptr() as *const _,
170170
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
171171
area_prepared_trampoline::<Self, F> as *const (),
172172
)),
@@ -204,7 +204,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + 'static {
204204
let f: Box_<F> = Box_::new(f);
205205
connect_raw(
206206
self.as_ptr() as *mut _,
207-
b"area-updated\0".as_ptr() as *const _,
207+
c"area-updated".as_ptr() as *const _,
208208
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
209209
area_updated_trampoline::<Self, F> as *const (),
210210
)),
@@ -226,7 +226,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + 'static {
226226
let f: Box_<F> = Box_::new(f);
227227
connect_raw(
228228
self.as_ptr() as *mut _,
229-
b"closed\0".as_ptr() as *const _,
229+
c"closed".as_ptr() as *const _,
230230
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
231231
closed_trampoline::<Self, F> as *const (),
232232
)),
@@ -257,7 +257,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + 'static {
257257
let f: Box_<F> = Box_::new(f);
258258
connect_raw(
259259
self.as_ptr() as *mut _,
260-
b"size-prepared\0".as_ptr() as *const _,
260+
c"size-prepared".as_ptr() as *const _,
261261
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
262262
size_prepared_trampoline::<Self, F> as *const (),
263263
)),

gdk-pixbuf/src/auto/pixbuf_simple_anim.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ impl PixbufSimpleAnim {
6161
let f: Box_<F> = Box_::new(f);
6262
connect_raw(
6363
self.as_ptr() as *mut _,
64-
b"notify::loop\0".as_ptr() as *const _,
64+
c"notify::loop".as_ptr() as *const _,
6565
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
6666
notify_loop_trampoline::<F> as *const (),
6767
)),

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 @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ be3ecc201d39)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 3ede86d6a218)

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 @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ be3ecc201d39)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 3ede86d6a218)

gio/src/auto/action.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ pub trait ActionExt: IsA<Action> + 'static {
136136
let f: Box_<F> = Box_::new(f);
137137
connect_raw(
138138
self.as_ptr() as *mut _,
139-
b"notify::enabled\0".as_ptr() as *const _,
139+
c"notify::enabled".as_ptr() as *const _,
140140
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
141141
notify_enabled_trampoline::<Self, F> as *const (),
142142
)),
@@ -159,7 +159,7 @@ pub trait ActionExt: IsA<Action> + 'static {
159159
let f: Box_<F> = Box_::new(f);
160160
connect_raw(
161161
self.as_ptr() as *mut _,
162-
b"notify::name\0".as_ptr() as *const _,
162+
c"notify::name".as_ptr() as *const _,
163163
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
164164
notify_name_trampoline::<Self, F> as *const (),
165165
)),
@@ -185,7 +185,7 @@ pub trait ActionExt: IsA<Action> + 'static {
185185
let f: Box_<F> = Box_::new(f);
186186
connect_raw(
187187
self.as_ptr() as *mut _,
188-
b"notify::parameter-type\0".as_ptr() as *const _,
188+
c"notify::parameter-type".as_ptr() as *const _,
189189
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
190190
notify_parameter_type_trampoline::<Self, F> as *const (),
191191
)),
@@ -208,7 +208,7 @@ pub trait ActionExt: IsA<Action> + 'static {
208208
let f: Box_<F> = Box_::new(f);
209209
connect_raw(
210210
self.as_ptr() as *mut _,
211-
b"notify::state\0".as_ptr() as *const _,
211+
c"notify::state".as_ptr() as *const _,
212212
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
213213
notify_state_trampoline::<Self, F> as *const (),
214214
)),
@@ -231,7 +231,7 @@ pub trait ActionExt: IsA<Action> + 'static {
231231
let f: Box_<F> = Box_::new(f);
232232
connect_raw(
233233
self.as_ptr() as *mut _,
234-
b"notify::state-type\0".as_ptr() as *const _,
234+
c"notify::state-type".as_ptr() as *const _,
235235
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
236236
notify_state_type_trampoline::<Self, F> as *const (),
237237
)),

0 commit comments

Comments
 (0)