Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Commit 71aa1ca

Browse files
committed
Regen
1 parent 4a88fd2 commit 71aa1ca

File tree

4 files changed

+2
-18
lines changed

4 files changed

+2
-18
lines changed

src/auto/pixbuf.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -533,63 +533,54 @@ impl<O: IsA<Pixbuf> + IsA<glib::object::Object>> PixbufExt for O {
533533

534534
unsafe extern "C" fn notify_bits_per_sample_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
535535
where P: IsA<Pixbuf> {
536-
callback_guard!();
537536
let f: &&(Fn(&P) + 'static) = transmute(f);
538537
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
539538
}
540539

541540
unsafe extern "C" fn notify_colorspace_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
542541
where P: IsA<Pixbuf> {
543-
callback_guard!();
544542
let f: &&(Fn(&P) + 'static) = transmute(f);
545543
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
546544
}
547545

548546
unsafe extern "C" fn notify_has_alpha_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
549547
where P: IsA<Pixbuf> {
550-
callback_guard!();
551548
let f: &&(Fn(&P) + 'static) = transmute(f);
552549
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
553550
}
554551

555552
unsafe extern "C" fn notify_height_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
556553
where P: IsA<Pixbuf> {
557-
callback_guard!();
558554
let f: &&(Fn(&P) + 'static) = transmute(f);
559555
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
560556
}
561557

562558
unsafe extern "C" fn notify_n_channels_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
563559
where P: IsA<Pixbuf> {
564-
callback_guard!();
565560
let f: &&(Fn(&P) + 'static) = transmute(f);
566561
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
567562
}
568563

569564
unsafe extern "C" fn notify_pixel_bytes_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
570565
where P: IsA<Pixbuf> {
571-
callback_guard!();
572566
let f: &&(Fn(&P) + 'static) = transmute(f);
573567
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
574568
}
575569

576570
unsafe extern "C" fn notify_pixels_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
577571
where P: IsA<Pixbuf> {
578-
callback_guard!();
579572
let f: &&(Fn(&P) + 'static) = transmute(f);
580573
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
581574
}
582575

583576
unsafe extern "C" fn notify_rowstride_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
584577
where P: IsA<Pixbuf> {
585-
callback_guard!();
586578
let f: &&(Fn(&P) + 'static) = transmute(f);
587579
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
588580
}
589581

590582
unsafe extern "C" fn notify_width_trampoline<P>(this: *mut ffi::GdkPixbuf, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
591583
where P: IsA<Pixbuf> {
592-
callback_guard!();
593584
let f: &&(Fn(&P) + 'static) = transmute(f);
594585
f(&Pixbuf::from_glib_borrow(this).downcast_unchecked())
595586
}

src/auto/pixbuf_loader.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,28 +170,24 @@ impl<O: IsA<PixbufLoader> + IsA<glib::object::Object>> PixbufLoaderExt for O {
170170

171171
unsafe extern "C" fn area_prepared_trampoline<P>(this: *mut ffi::GdkPixbufLoader, f: glib_ffi::gpointer)
172172
where P: IsA<PixbufLoader> {
173-
callback_guard!();
174173
let f: &&(Fn(&P) + 'static) = transmute(f);
175174
f(&PixbufLoader::from_glib_borrow(this).downcast_unchecked())
176175
}
177176

178177
unsafe extern "C" fn area_updated_trampoline<P>(this: *mut ffi::GdkPixbufLoader, x: libc::c_int, y: libc::c_int, width: libc::c_int, height: libc::c_int, f: glib_ffi::gpointer)
179178
where P: IsA<PixbufLoader> {
180-
callback_guard!();
181179
let f: &&(Fn(&P, i32, i32, i32, i32) + 'static) = transmute(f);
182180
f(&PixbufLoader::from_glib_borrow(this).downcast_unchecked(), x, y, width, height)
183181
}
184182

185183
unsafe extern "C" fn closed_trampoline<P>(this: *mut ffi::GdkPixbufLoader, f: glib_ffi::gpointer)
186184
where P: IsA<PixbufLoader> {
187-
callback_guard!();
188185
let f: &&(Fn(&P) + 'static) = transmute(f);
189186
f(&PixbufLoader::from_glib_borrow(this).downcast_unchecked())
190187
}
191188

192189
unsafe extern "C" fn size_prepared_trampoline<P>(this: *mut ffi::GdkPixbufLoader, width: libc::c_int, height: libc::c_int, f: glib_ffi::gpointer)
193190
where P: IsA<PixbufLoader> {
194-
callback_guard!();
195191
let f: &&(Fn(&P, i32, i32) + 'static) = transmute(f);
196192
f(&PixbufLoader::from_glib_borrow(this).downcast_unchecked(), width, height)
197193
}

src/auto/pixbuf_simple_anim.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ impl<O: IsA<PixbufSimpleAnim> + IsA<glib::object::Object>> PixbufSimpleAnimExt f
7474

7575
unsafe extern "C" fn notify_loop_trampoline<P>(this: *mut ffi::GdkPixbufSimpleAnim, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer)
7676
where P: IsA<PixbufSimpleAnim> {
77-
callback_guard!();
7877
let f: &&(Fn(&P) + 'static) = transmute(f);
7978
f(&PixbufSimpleAnim::from_glib_borrow(this).downcast_unchecked())
8079
}

src/auto/versions.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
All files in this directory
2-
were generated by gir (https://github.com/gtk-rs/gir @ 5ec9961)
3-
from gir-files (https://github.com/gtk-rs/gir-files @ 3fde76b)
4-
DO NOT EDIT THEM
1+
Generated by gir (https://github.com/gtk-rs/gir @ 9eab494)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 47c69e6)

0 commit comments

Comments
 (0)