@@ -101,22 +101,22 @@ pub trait TableExt: 'static {
101101 fn remove_row_selection ( & self , row : i32 ) -> bool ;
102102
103103 #[ doc( alias = "atk_table_set_caption" ) ]
104- fn set_caption < P : IsA < Object > > ( & self , caption : & P ) ;
104+ fn set_caption ( & self , caption : & impl IsA < Object > ) ;
105105
106106 #[ doc( alias = "atk_table_set_column_description" ) ]
107107 fn set_column_description ( & self , column : i32 , description : & str ) ;
108108
109109 #[ doc( alias = "atk_table_set_column_header" ) ]
110- fn set_column_header < P : IsA < Object > > ( & self , column : i32 , header : & P ) ;
110+ fn set_column_header ( & self , column : i32 , header : & impl IsA < Object > ) ;
111111
112112 #[ doc( alias = "atk_table_set_row_description" ) ]
113113 fn set_row_description ( & self , row : i32 , description : & str ) ;
114114
115115 #[ doc( alias = "atk_table_set_row_header" ) ]
116- fn set_row_header < P : IsA < Object > > ( & self , row : i32 , header : & P ) ;
116+ fn set_row_header ( & self , row : i32 , header : & impl IsA < Object > ) ;
117117
118118 #[ doc( alias = "atk_table_set_summary" ) ]
119- fn set_summary < P : IsA < Object > > ( & self , accessible : & P ) ;
119+ fn set_summary ( & self , accessible : & impl IsA < Object > ) ;
120120
121121 #[ doc( alias = "column-deleted" ) ]
122122 fn connect_column_deleted < F : Fn ( & Self , i32 , i32 ) + ' static > ( & self , f : F ) -> SignalHandlerId ;
@@ -287,7 +287,7 @@ impl<O: IsA<Table>> TableExt for O {
287287 }
288288 }
289289
290- fn set_caption < P : IsA < Object > > ( & self , caption : & P ) {
290+ fn set_caption ( & self , caption : & impl IsA < Object > ) {
291291 unsafe {
292292 ffi:: atk_table_set_caption (
293293 self . as_ref ( ) . to_glib_none ( ) . 0 ,
@@ -306,7 +306,7 @@ impl<O: IsA<Table>> TableExt for O {
306306 }
307307 }
308308
309- fn set_column_header < P : IsA < Object > > ( & self , column : i32 , header : & P ) {
309+ fn set_column_header ( & self , column : i32 , header : & impl IsA < Object > ) {
310310 unsafe {
311311 ffi:: atk_table_set_column_header (
312312 self . as_ref ( ) . to_glib_none ( ) . 0 ,
@@ -326,7 +326,7 @@ impl<O: IsA<Table>> TableExt for O {
326326 }
327327 }
328328
329- fn set_row_header < P : IsA < Object > > ( & self , row : i32 , header : & P ) {
329+ fn set_row_header ( & self , row : i32 , header : & impl IsA < Object > ) {
330330 unsafe {
331331 ffi:: atk_table_set_row_header (
332332 self . as_ref ( ) . to_glib_none ( ) . 0 ,
@@ -336,7 +336,7 @@ impl<O: IsA<Table>> TableExt for O {
336336 }
337337 }
338338
339- fn set_summary < P : IsA < Object > > ( & self , accessible : & P ) {
339+ fn set_summary ( & self , accessible : & impl IsA < Object > ) {
340340 unsafe {
341341 ffi:: atk_table_set_summary (
342342 self . as_ref ( ) . to_glib_none ( ) . 0 ,
0 commit comments