File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -578,6 +578,10 @@ manual_traits = ["AccessibleExtManual"]
578
578
rename = " update_relation"
579
579
doc_trait_name = " AccessibleExtManual"
580
580
manual = true
581
+ [[object .function ]]
582
+ name = " get_platform_state"
583
+ # Don't rename to is_platform_state
584
+ rename = " platform_state"
581
585
582
586
[[object ]]
583
587
name = " Gtk.Actionable"
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ pub trait AccessibleExt: 'static {
71
71
#[ cfg_attr( feature = "dox" , doc( cfg( feature = "v4_10" ) ) ) ]
72
72
#[ doc( alias = "gtk_accessible_get_platform_state" ) ]
73
73
#[ doc( alias = "get_platform_state" ) ]
74
- fn is_platform_state ( & self , state : AccessiblePlatformState ) -> bool ;
74
+ fn platform_state ( & self , state : AccessiblePlatformState ) -> bool ;
75
75
76
76
#[ doc( alias = "gtk_accessible_reset_property" ) ]
77
77
fn reset_property ( & self , property : AccessibleProperty ) ;
@@ -182,7 +182,7 @@ impl<O: IsA<Accessible>> AccessibleExt for O {
182
182
183
183
#[ cfg( any( feature = "v4_10" , feature = "dox" ) ) ]
184
184
#[ cfg_attr( feature = "dox" , doc( cfg( feature = "v4_10" ) ) ) ]
185
- fn is_platform_state ( & self , state : AccessiblePlatformState ) -> bool {
185
+ fn platform_state ( & self , state : AccessiblePlatformState ) -> bool {
186
186
unsafe {
187
187
from_glib ( ffi:: gtk_accessible_get_platform_state (
188
188
self . as_ref ( ) . to_glib_none ( ) . 0 ,
You can’t perform that action at this time.
0 commit comments