@@ -454,7 +454,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
454
454
let f: Box_ < F > = Box_ :: new ( f) ;
455
455
connect_raw (
456
456
self . as_ptr ( ) as * mut _ ,
457
- b "activate\0 ". as_ptr ( ) as * const _ ,
457
+ c "activate". as_ptr ( ) as * const _ ,
458
458
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
459
459
activate_trampoline :: < Self , F > as * const ( ) ,
460
460
) ) ,
@@ -486,7 +486,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
486
486
let f: Box_ < F > = Box_ :: new ( f) ;
487
487
connect_raw (
488
488
self . as_ptr ( ) as * mut _ ,
489
- b "command-line\0 ". as_ptr ( ) as * const _ ,
489
+ c "command-line". as_ptr ( ) as * const _ ,
490
490
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
491
491
command_line_trampoline :: < Self , F > as * const ( ) ,
492
492
) ) ,
@@ -518,7 +518,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
518
518
let f: Box_ < F > = Box_ :: new ( f) ;
519
519
connect_raw (
520
520
self . as_ptr ( ) as * mut _ ,
521
- b "handle-local-options\0 ". as_ptr ( ) as * const _ ,
521
+ c "handle-local-options". as_ptr ( ) as * const _ ,
522
522
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
523
523
handle_local_options_trampoline :: < Self , F > as * const ( ) ,
524
524
) ) ,
@@ -545,7 +545,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
545
545
let f: Box_ < F > = Box_ :: new ( f) ;
546
546
connect_raw (
547
547
self . as_ptr ( ) as * mut _ ,
548
- b "name-lost\0 ". as_ptr ( ) as * const _ ,
548
+ c "name-lost". as_ptr ( ) as * const _ ,
549
549
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
550
550
name_lost_trampoline :: < Self , F > as * const ( ) ,
551
551
) ) ,
@@ -567,7 +567,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
567
567
let f: Box_ < F > = Box_ :: new ( f) ;
568
568
connect_raw (
569
569
self . as_ptr ( ) as * mut _ ,
570
- b "shutdown\0 ". as_ptr ( ) as * const _ ,
570
+ c "shutdown". as_ptr ( ) as * const _ ,
571
571
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
572
572
shutdown_trampoline :: < Self , F > as * const ( ) ,
573
573
) ) ,
@@ -589,7 +589,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
589
589
let f: Box_ < F > = Box_ :: new ( f) ;
590
590
connect_raw (
591
591
self . as_ptr ( ) as * mut _ ,
592
- b "startup\0 ". as_ptr ( ) as * const _ ,
592
+ c "startup". as_ptr ( ) as * const _ ,
593
593
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
594
594
startup_trampoline :: < Self , F > as * const ( ) ,
595
595
) ) ,
@@ -615,7 +615,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
615
615
let f: Box_ < F > = Box_ :: new ( f) ;
616
616
connect_raw (
617
617
self . as_ptr ( ) as * mut _ ,
618
- b "notify::application-id\0 ". as_ptr ( ) as * const _ ,
618
+ c "notify::application-id". as_ptr ( ) as * const _ ,
619
619
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
620
620
notify_application_id_trampoline :: < Self , F > as * const ( ) ,
621
621
) ) ,
@@ -638,7 +638,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
638
638
let f: Box_ < F > = Box_ :: new ( f) ;
639
639
connect_raw (
640
640
self . as_ptr ( ) as * mut _ ,
641
- b "notify::flags\0 ". as_ptr ( ) as * const _ ,
641
+ c "notify::flags". as_ptr ( ) as * const _ ,
642
642
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
643
643
notify_flags_trampoline :: < Self , F > as * const ( ) ,
644
644
) ) ,
@@ -664,7 +664,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
664
664
let f: Box_ < F > = Box_ :: new ( f) ;
665
665
connect_raw (
666
666
self . as_ptr ( ) as * mut _ ,
667
- b "notify::inactivity-timeout\0 ". as_ptr ( ) as * const _ ,
667
+ c "notify::inactivity-timeout". as_ptr ( ) as * const _ ,
668
668
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
669
669
notify_inactivity_timeout_trampoline :: < Self , F > as * const ( ) ,
670
670
) ) ,
@@ -687,7 +687,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
687
687
let f: Box_ < F > = Box_ :: new ( f) ;
688
688
connect_raw (
689
689
self . as_ptr ( ) as * mut _ ,
690
- b "notify::is-busy\0 ". as_ptr ( ) as * const _ ,
690
+ c "notify::is-busy". as_ptr ( ) as * const _ ,
691
691
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
692
692
notify_is_busy_trampoline :: < Self , F > as * const ( ) ,
693
693
) ) ,
@@ -713,7 +713,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
713
713
let f: Box_ < F > = Box_ :: new ( f) ;
714
714
connect_raw (
715
715
self . as_ptr ( ) as * mut _ ,
716
- b "notify::is-registered\0 ". as_ptr ( ) as * const _ ,
716
+ c "notify::is-registered". as_ptr ( ) as * const _ ,
717
717
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
718
718
notify_is_registered_trampoline :: < Self , F > as * const ( ) ,
719
719
) ) ,
@@ -739,7 +739,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
739
739
let f: Box_ < F > = Box_ :: new ( f) ;
740
740
connect_raw (
741
741
self . as_ptr ( ) as * mut _ ,
742
- b "notify::is-remote\0 ". as_ptr ( ) as * const _ ,
742
+ c "notify::is-remote". as_ptr ( ) as * const _ ,
743
743
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
744
744
notify_is_remote_trampoline :: < Self , F > as * const ( ) ,
745
745
) ) ,
@@ -765,7 +765,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
765
765
let f: Box_ < F > = Box_ :: new ( f) ;
766
766
connect_raw (
767
767
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 _ ,
769
769
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
770
770
notify_resource_base_path_trampoline :: < Self , F > as * const ( ) ,
771
771
) ) ,
@@ -790,7 +790,7 @@ pub trait ApplicationExt: IsA<Application> + 'static {
790
790
let f: Box_ < F > = Box_ :: new ( f) ;
791
791
connect_raw (
792
792
self . as_ptr ( ) as * mut _ ,
793
- b "notify::version\0 ". as_ptr ( ) as * const _ ,
793
+ c "notify::version". as_ptr ( ) as * const _ ,
794
794
Some ( std:: mem:: transmute :: < * const ( ) , unsafe extern "C" fn ( ) > (
795
795
notify_version_trampoline :: < Self , F > as * const ( ) ,
796
796
) ) ,
0 commit comments