@@ -26,16 +26,16 @@ pub const NONE_HYPERLINK: Option<&Hyperlink> = None;
2626
2727pub trait HyperlinkExt : ' static {
2828 #[ doc( alias = "atk_hyperlink_get_end_index" ) ]
29- fn get_end_index ( & self ) -> i32 ;
29+ fn end_index ( & self ) -> i32 ;
3030
3131 #[ doc( alias = "atk_hyperlink_get_n_anchors" ) ]
32- fn get_n_anchors ( & self ) -> i32 ;
32+ fn n_anchors ( & self ) -> i32 ;
3333
3434 #[ doc( alias = "atk_hyperlink_get_object" ) ]
3535 fn get_object ( & self , i : i32 ) -> Option < Object > ;
3636
3737 #[ doc( alias = "atk_hyperlink_get_start_index" ) ]
38- fn get_start_index ( & self ) -> i32 ;
38+ fn start_index ( & self ) -> i32 ;
3939
4040 #[ doc( alias = "atk_hyperlink_get_uri" ) ]
4141 fn get_uri ( & self , i : i32 ) -> Option < glib:: GString > ;
@@ -46,7 +46,8 @@ pub trait HyperlinkExt: 'static {
4646 #[ doc( alias = "atk_hyperlink_is_valid" ) ]
4747 fn is_valid ( & self ) -> bool ;
4848
49- fn get_property_number_of_anchors ( & self ) -> i32 ;
49+ #[ doc( alias = "get_property_number_of_anchors" ) ]
50+ fn number_of_anchors ( & self ) -> i32 ;
5051
5152 fn connect_link_activated < F : Fn ( & Self ) + ' static > ( & self , f : F ) -> SignalHandlerId ;
5253
@@ -61,11 +62,11 @@ pub trait HyperlinkExt: 'static {
6162}
6263
6364impl < O : IsA < Hyperlink > > HyperlinkExt for O {
64- fn get_end_index ( & self ) -> i32 {
65+ fn end_index ( & self ) -> i32 {
6566 unsafe { ffi:: atk_hyperlink_get_end_index ( self . as_ref ( ) . to_glib_none ( ) . 0 ) }
6667 }
6768
68- fn get_n_anchors ( & self ) -> i32 {
69+ fn n_anchors ( & self ) -> i32 {
6970 unsafe { ffi:: atk_hyperlink_get_n_anchors ( self . as_ref ( ) . to_glib_none ( ) . 0 ) }
7071 }
7172
@@ -78,7 +79,7 @@ impl<O: IsA<Hyperlink>> HyperlinkExt for O {
7879 }
7980 }
8081
81- fn get_start_index ( & self ) -> i32 {
82+ fn start_index ( & self ) -> i32 {
8283 unsafe { ffi:: atk_hyperlink_get_start_index ( self . as_ref ( ) . to_glib_none ( ) . 0 ) }
8384 }
8485
@@ -99,7 +100,7 @@ impl<O: IsA<Hyperlink>> HyperlinkExt for O {
99100 unsafe { from_glib ( ffi:: atk_hyperlink_is_valid ( self . as_ref ( ) . to_glib_none ( ) . 0 ) ) }
100101 }
101102
102- fn get_property_number_of_anchors ( & self ) -> i32 {
103+ fn number_of_anchors ( & self ) -> i32 {
103104 unsafe {
104105 let mut value = glib:: Value :: from_type ( <i32 as StaticType >:: static_type ( ) ) ;
105106 glib:: gobject_ffi:: g_object_get_property (
0 commit comments