Skip to content

Commit 701cf24

Browse files
Regenerate with latest gir/gir-files
1 parent 2579e50 commit 701cf24

File tree

85 files changed

+272
-231
lines changed

Some content is hidden

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

85 files changed

+272
-231
lines changed

gdk-pixbuf/src/auto/pixbuf_loader.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + sealed::Sealed + 'static {
172172
connect_raw(
173173
self.as_ptr() as *mut _,
174174
b"area-prepared\0".as_ptr() as *const _,
175-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
175+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
176176
area_prepared_trampoline::<Self, F> as *const (),
177177
)),
178178
Box_::into_raw(f),
@@ -210,7 +210,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + sealed::Sealed + 'static {
210210
connect_raw(
211211
self.as_ptr() as *mut _,
212212
b"area-updated\0".as_ptr() as *const _,
213-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
213+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
214214
area_updated_trampoline::<Self, F> as *const (),
215215
)),
216216
Box_::into_raw(f),
@@ -232,7 +232,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + sealed::Sealed + 'static {
232232
connect_raw(
233233
self.as_ptr() as *mut _,
234234
b"closed\0".as_ptr() as *const _,
235-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
235+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
236236
closed_trampoline::<Self, F> as *const (),
237237
)),
238238
Box_::into_raw(f),
@@ -263,7 +263,7 @@ pub trait PixbufLoaderExt: IsA<PixbufLoader> + sealed::Sealed + 'static {
263263
connect_raw(
264264
self.as_ptr() as *mut _,
265265
b"size-prepared\0".as_ptr() as *const _,
266-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
266+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
267267
size_prepared_trampoline::<Self, F> as *const (),
268268
)),
269269
Box_::into_raw(f),

gdk-pixbuf/src/auto/pixbuf_simple_anim.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl PixbufSimpleAnim {
6060
connect_raw(
6161
self.as_ptr() as *mut _,
6262
b"notify::loop\0".as_ptr() as *const _,
63-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
63+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
6464
notify_loop_trampoline::<F> as *const (),
6565
)),
6666
Box_::into_raw(f),

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 @ eb5be4f1bafe)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 449db48cf86c)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 1ebe20c349d3)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 74aa91d9063d)

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 @ eb5be4f1bafe)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 449db48cf86c)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 1ebe20c349d3)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 74aa91d9063d)

gio/src/auto/action.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ pub trait ActionExt: IsA<Action> + sealed::Sealed + 'static {
138138
connect_raw(
139139
self.as_ptr() as *mut _,
140140
b"notify::enabled\0".as_ptr() as *const _,
141-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
141+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
142142
notify_enabled_trampoline::<Self, F> as *const (),
143143
)),
144144
Box_::into_raw(f),
@@ -161,7 +161,7 @@ pub trait ActionExt: IsA<Action> + sealed::Sealed + 'static {
161161
connect_raw(
162162
self.as_ptr() as *mut _,
163163
b"notify::name\0".as_ptr() as *const _,
164-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
164+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
165165
notify_name_trampoline::<Self, F> as *const (),
166166
)),
167167
Box_::into_raw(f),
@@ -187,7 +187,7 @@ pub trait ActionExt: IsA<Action> + sealed::Sealed + 'static {
187187
connect_raw(
188188
self.as_ptr() as *mut _,
189189
b"notify::parameter-type\0".as_ptr() as *const _,
190-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
190+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
191191
notify_parameter_type_trampoline::<Self, F> as *const (),
192192
)),
193193
Box_::into_raw(f),
@@ -210,7 +210,7 @@ pub trait ActionExt: IsA<Action> + sealed::Sealed + 'static {
210210
connect_raw(
211211
self.as_ptr() as *mut _,
212212
b"notify::state\0".as_ptr() as *const _,
213-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
213+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
214214
notify_state_trampoline::<Self, F> as *const (),
215215
)),
216216
Box_::into_raw(f),
@@ -233,7 +233,7 @@ pub trait ActionExt: IsA<Action> + sealed::Sealed + 'static {
233233
connect_raw(
234234
self.as_ptr() as *mut _,
235235
b"notify::state-type\0".as_ptr() as *const _,
236-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
236+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
237237
notify_state_type_trampoline::<Self, F> as *const (),
238238
)),
239239
Box_::into_raw(f),

gio/src/auto/action_group.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ pub trait ActionGroupExt: IsA<ActionGroup> + sealed::Sealed + 'static {
195195
connect_raw(
196196
self.as_ptr() as *mut _,
197197
signal_name.as_ptr() as *const _,
198-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
198+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
199199
action_added_trampoline::<Self, F> as *const (),
200200
)),
201201
Box_::into_raw(f),
@@ -235,7 +235,7 @@ pub trait ActionGroupExt: IsA<ActionGroup> + sealed::Sealed + 'static {
235235
connect_raw(
236236
self.as_ptr() as *mut _,
237237
signal_name.as_ptr() as *const _,
238-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
238+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
239239
action_enabled_changed_trampoline::<Self, F> as *const (),
240240
)),
241241
Box_::into_raw(f),
@@ -272,7 +272,7 @@ pub trait ActionGroupExt: IsA<ActionGroup> + sealed::Sealed + 'static {
272272
connect_raw(
273273
self.as_ptr() as *mut _,
274274
signal_name.as_ptr() as *const _,
275-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
275+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
276276
action_removed_trampoline::<Self, F> as *const (),
277277
)),
278278
Box_::into_raw(f),
@@ -311,7 +311,7 @@ pub trait ActionGroupExt: IsA<ActionGroup> + sealed::Sealed + 'static {
311311
connect_raw(
312312
self.as_ptr() as *mut _,
313313
signal_name.as_ptr() as *const _,
314-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
314+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
315315
action_state_changed_trampoline::<Self, F> as *const (),
316316
)),
317317
Box_::into_raw(f),

gio/src/auto/app_info_monitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ impl AppInfoMonitor {
3838
connect_raw(
3939
self.as_ptr() as *mut _,
4040
b"changed\0".as_ptr() as *const _,
41-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
41+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
4242
changed_trampoline::<F> as *const (),
4343
)),
4444
Box_::into_raw(f),

gio/src/auto/app_launch_context.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ pub trait AppLaunchContextExt: IsA<AppLaunchContext> + sealed::Sealed + 'static
126126
connect_raw(
127127
self.as_ptr() as *mut _,
128128
b"launch-failed\0".as_ptr() as *const _,
129-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
129+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
130130
launch_failed_trampoline::<Self, F> as *const (),
131131
)),
132132
Box_::into_raw(f),
@@ -164,7 +164,7 @@ pub trait AppLaunchContextExt: IsA<AppLaunchContext> + sealed::Sealed + 'static
164164
connect_raw(
165165
self.as_ptr() as *mut _,
166166
b"launch-started\0".as_ptr() as *const _,
167-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
167+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
168168
launch_started_trampoline::<Self, F> as *const (),
169169
)),
170170
Box_::into_raw(f),
@@ -198,7 +198,7 @@ pub trait AppLaunchContextExt: IsA<AppLaunchContext> + sealed::Sealed + 'static
198198
connect_raw(
199199
self.as_ptr() as *mut _,
200200
b"launched\0".as_ptr() as *const _,
201-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
201+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
202202
launched_trampoline::<Self, F> as *const (),
203203
)),
204204
Box_::into_raw(f),

gio/src/auto/application.rs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
462462
connect_raw(
463463
self.as_ptr() as *mut _,
464464
b"activate\0".as_ptr() as *const _,
465-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
465+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
466466
activate_trampoline::<Self, F> as *const (),
467467
)),
468468
Box_::into_raw(f),
@@ -494,7 +494,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
494494
connect_raw(
495495
self.as_ptr() as *mut _,
496496
b"command-line\0".as_ptr() as *const _,
497-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
497+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
498498
command_line_trampoline::<Self, F> as *const (),
499499
)),
500500
Box_::into_raw(f),
@@ -526,7 +526,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
526526
connect_raw(
527527
self.as_ptr() as *mut _,
528528
b"handle-local-options\0".as_ptr() as *const _,
529-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
529+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
530530
handle_local_options_trampoline::<Self, F> as *const (),
531531
)),
532532
Box_::into_raw(f),
@@ -553,7 +553,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
553553
connect_raw(
554554
self.as_ptr() as *mut _,
555555
b"name-lost\0".as_ptr() as *const _,
556-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
556+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
557557
name_lost_trampoline::<Self, F> as *const (),
558558
)),
559559
Box_::into_raw(f),
@@ -575,7 +575,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
575575
connect_raw(
576576
self.as_ptr() as *mut _,
577577
b"shutdown\0".as_ptr() as *const _,
578-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
578+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
579579
shutdown_trampoline::<Self, F> as *const (),
580580
)),
581581
Box_::into_raw(f),
@@ -597,7 +597,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
597597
connect_raw(
598598
self.as_ptr() as *mut _,
599599
b"startup\0".as_ptr() as *const _,
600-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
600+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
601601
startup_trampoline::<Self, F> as *const (),
602602
)),
603603
Box_::into_raw(f),
@@ -623,7 +623,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
623623
connect_raw(
624624
self.as_ptr() as *mut _,
625625
b"notify::action-group\0".as_ptr() as *const _,
626-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
626+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
627627
notify_action_group_trampoline::<Self, F> as *const (),
628628
)),
629629
Box_::into_raw(f),
@@ -649,7 +649,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
649649
connect_raw(
650650
self.as_ptr() as *mut _,
651651
b"notify::application-id\0".as_ptr() as *const _,
652-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
652+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
653653
notify_application_id_trampoline::<Self, F> as *const (),
654654
)),
655655
Box_::into_raw(f),
@@ -672,7 +672,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
672672
connect_raw(
673673
self.as_ptr() as *mut _,
674674
b"notify::flags\0".as_ptr() as *const _,
675-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
675+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
676676
notify_flags_trampoline::<Self, F> as *const (),
677677
)),
678678
Box_::into_raw(f),
@@ -698,7 +698,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
698698
connect_raw(
699699
self.as_ptr() as *mut _,
700700
b"notify::inactivity-timeout\0".as_ptr() as *const _,
701-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
701+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
702702
notify_inactivity_timeout_trampoline::<Self, F> as *const (),
703703
)),
704704
Box_::into_raw(f),
@@ -721,7 +721,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
721721
connect_raw(
722722
self.as_ptr() as *mut _,
723723
b"notify::is-busy\0".as_ptr() as *const _,
724-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
724+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
725725
notify_is_busy_trampoline::<Self, F> as *const (),
726726
)),
727727
Box_::into_raw(f),
@@ -747,7 +747,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
747747
connect_raw(
748748
self.as_ptr() as *mut _,
749749
b"notify::is-registered\0".as_ptr() as *const _,
750-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
750+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
751751
notify_is_registered_trampoline::<Self, F> as *const (),
752752
)),
753753
Box_::into_raw(f),
@@ -773,7 +773,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
773773
connect_raw(
774774
self.as_ptr() as *mut _,
775775
b"notify::is-remote\0".as_ptr() as *const _,
776-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
776+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
777777
notify_is_remote_trampoline::<Self, F> as *const (),
778778
)),
779779
Box_::into_raw(f),
@@ -799,7 +799,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
799799
connect_raw(
800800
self.as_ptr() as *mut _,
801801
b"notify::resource-base-path\0".as_ptr() as *const _,
802-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
802+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
803803
notify_resource_base_path_trampoline::<Self, F> as *const (),
804804
)),
805805
Box_::into_raw(f),
@@ -824,7 +824,7 @@ pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
824824
connect_raw(
825825
self.as_ptr() as *mut _,
826826
b"notify::version\0".as_ptr() as *const _,
827-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
827+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
828828
notify_version_trampoline::<Self, F> as *const (),
829829
)),
830830
Box_::into_raw(f),

gio/src/auto/application_command_line.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ pub trait ApplicationCommandLineExt:
204204
connect_raw(
205205
self.as_ptr() as *mut _,
206206
b"notify::is-remote\0".as_ptr() as *const _,
207-
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
207+
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
208208
notify_is_remote_trampoline::<Self, F> as *const (),
209209
)),
210210
Box_::into_raw(f),

0 commit comments

Comments
 (0)