Skip to content

Commit 184c641

Browse files
committed
Regenerate with latest gir / gir-files
Fixes #1599
1 parent a98496f commit 184c641

File tree

87 files changed

+276
-267
lines changed

Some content is hidden

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

87 files changed

+276
-267
lines changed

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
)),

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
let f: Box_<F> = Box_::new(f);
3939
connect_raw(
4040
self.as_ptr() as *mut _,
41-
b"changed\0".as_ptr() as *const _,
41+
c"changed".as_ptr() as *const _,
4242
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
4343
changed_trampoline::<F> as *const (),
4444
)),

gio/src/auto/app_launch_context.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ pub trait AppLaunchContextExt: IsA<AppLaunchContext> + 'static {
124124
let f: Box_<F> = Box_::new(f);
125125
connect_raw(
126126
self.as_ptr() as *mut _,
127-
b"launch-failed\0".as_ptr() as *const _,
127+
c"launch-failed".as_ptr() as *const _,
128128
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
129129
launch_failed_trampoline::<Self, F> as *const (),
130130
)),
@@ -162,7 +162,7 @@ pub trait AppLaunchContextExt: IsA<AppLaunchContext> + 'static {
162162
let f: Box_<F> = Box_::new(f);
163163
connect_raw(
164164
self.as_ptr() as *mut _,
165-
b"launch-started\0".as_ptr() as *const _,
165+
c"launch-started".as_ptr() as *const _,
166166
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
167167
launch_started_trampoline::<Self, F> as *const (),
168168
)),
@@ -196,7 +196,7 @@ pub trait AppLaunchContextExt: IsA<AppLaunchContext> + 'static {
196196
let f: Box_<F> = Box_::new(f);
197197
connect_raw(
198198
self.as_ptr() as *mut _,
199-
b"launched\0".as_ptr() as *const _,
199+
c"launched".as_ptr() as *const _,
200200
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
201201
launched_trampoline::<Self, F> as *const (),
202202
)),

gio/src/auto/application.rs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
454454
let f: Box_<F> = Box_::new(f);
455455
connect_raw(
456456
self.as_ptr() as *mut _,
457-
b"activate\0".as_ptr() as *const _,
457+
c"activate".as_ptr() as *const _,
458458
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
459459
activate_trampoline::<Self, F> as *const (),
460460
)),
@@ -486,7 +486,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
486486
let f: Box_<F> = Box_::new(f);
487487
connect_raw(
488488
self.as_ptr() as *mut _,
489-
b"command-line\0".as_ptr() as *const _,
489+
c"command-line".as_ptr() as *const _,
490490
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
491491
command_line_trampoline::<Self, F> as *const (),
492492
)),
@@ -518,7 +518,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
518518
let f: Box_<F> = Box_::new(f);
519519
connect_raw(
520520
self.as_ptr() as *mut _,
521-
b"handle-local-options\0".as_ptr() as *const _,
521+
c"handle-local-options".as_ptr() as *const _,
522522
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
523523
handle_local_options_trampoline::<Self, F> as *const (),
524524
)),
@@ -545,7 +545,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
545545
let f: Box_<F> = Box_::new(f);
546546
connect_raw(
547547
self.as_ptr() as *mut _,
548-
b"name-lost\0".as_ptr() as *const _,
548+
c"name-lost".as_ptr() as *const _,
549549
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
550550
name_lost_trampoline::<Self, F> as *const (),
551551
)),
@@ -567,7 +567,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
567567
let f: Box_<F> = Box_::new(f);
568568
connect_raw(
569569
self.as_ptr() as *mut _,
570-
b"shutdown\0".as_ptr() as *const _,
570+
c"shutdown".as_ptr() as *const _,
571571
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
572572
shutdown_trampoline::<Self, F> as *const (),
573573
)),
@@ -589,7 +589,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
589589
let f: Box_<F> = Box_::new(f);
590590
connect_raw(
591591
self.as_ptr() as *mut _,
592-
b"startup\0".as_ptr() as *const _,
592+
c"startup".as_ptr() as *const _,
593593
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
594594
startup_trampoline::<Self, F> as *const (),
595595
)),
@@ -615,7 +615,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
615615
let f: Box_<F> = Box_::new(f);
616616
connect_raw(
617617
self.as_ptr() as *mut _,
618-
b"notify::application-id\0".as_ptr() as *const _,
618+
c"notify::application-id".as_ptr() as *const _,
619619
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
620620
notify_application_id_trampoline::<Self, F> as *const (),
621621
)),
@@ -638,7 +638,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
638638
let f: Box_<F> = Box_::new(f);
639639
connect_raw(
640640
self.as_ptr() as *mut _,
641-
b"notify::flags\0".as_ptr() as *const _,
641+
c"notify::flags".as_ptr() as *const _,
642642
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
643643
notify_flags_trampoline::<Self, F> as *const (),
644644
)),
@@ -664,7 +664,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
664664
let f: Box_<F> = Box_::new(f);
665665
connect_raw(
666666
self.as_ptr() as *mut _,
667-
b"notify::inactivity-timeout\0".as_ptr() as *const _,
667+
c"notify::inactivity-timeout".as_ptr() as *const _,
668668
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
669669
notify_inactivity_timeout_trampoline::<Self, F> as *const (),
670670
)),
@@ -687,7 +687,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
687687
let f: Box_<F> = Box_::new(f);
688688
connect_raw(
689689
self.as_ptr() as *mut _,
690-
b"notify::is-busy\0".as_ptr() as *const _,
690+
c"notify::is-busy".as_ptr() as *const _,
691691
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
692692
notify_is_busy_trampoline::<Self, F> as *const (),
693693
)),
@@ -713,7 +713,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
713713
let f: Box_<F> = Box_::new(f);
714714
connect_raw(
715715
self.as_ptr() as *mut _,
716-
b"notify::is-registered\0".as_ptr() as *const _,
716+
c"notify::is-registered".as_ptr() as *const _,
717717
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
718718
notify_is_registered_trampoline::<Self, F> as *const (),
719719
)),
@@ -739,7 +739,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
739739
let f: Box_<F> = Box_::new(f);
740740
connect_raw(
741741
self.as_ptr() as *mut _,
742-
b"notify::is-remote\0".as_ptr() as *const _,
742+
c"notify::is-remote".as_ptr() as *const _,
743743
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
744744
notify_is_remote_trampoline::<Self, F> as *const (),
745745
)),
@@ -765,7 +765,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
765765
let f: Box_<F> = Box_::new(f);
766766
connect_raw(
767767
self.as_ptr() as *mut _,
768-
b"notify::resource-base-path\0".as_ptr() as *const _,
768+
c"notify::resource-base-path".as_ptr() as *const _,
769769
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
770770
notify_resource_base_path_trampoline::<Self, F> as *const (),
771771
)),
@@ -790,7 +790,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
790790
let f: Box_<F> = Box_::new(f);
791791
connect_raw(
792792
self.as_ptr() as *mut _,
793-
b"notify::version\0".as_ptr() as *const _,
793+
c"notify::version".as_ptr() as *const _,
794794
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
795795
notify_version_trampoline::<Self, F> as *const (),
796796
)),

gio/src/auto/application_command_line.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ pub trait ApplicationCommandLineExt: IsA<ApplicationCommandLine> + 'static {
197197
let f: Box_<F> = Box_::new(f);
198198
connect_raw(
199199
self.as_ptr() as *mut _,
200-
b"notify::is-remote\0".as_ptr() as *const _,
200+
c"notify::is-remote".as_ptr() as *const _,
201201
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
202202
notify_is_remote_trampoline::<Self, F> as *const (),
203203
)),

gio/src/auto/buffered_input_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ pub trait BufferedInputStreamExt: IsA<BufferedInputStream> + 'static {
265265
let f: Box_<F> = Box_::new(f);
266266
connect_raw(
267267
self.as_ptr() as *mut _,
268-
b"notify::buffer-size\0".as_ptr() as *const _,
268+
c"notify::buffer-size".as_ptr() as *const _,
269269
Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
270270
notify_buffer_size_trampoline::<Self, F> as *const (),
271271
)),

0 commit comments

Comments
 (0)