Skip to content

Commit 295fbbf

Browse files
Regenerate with latest gir
1 parent 00bdd14 commit 295fbbf

Some content is hidden

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

45 files changed

+233
-261
lines changed

Diff for: atk/src/auto/document.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub trait DocumentExt: 'static {
3535

3636
//#[doc(alias = "atk_document_get_document")]
3737
//#[doc(alias = "get_document")]
38-
//fn document(&self) -> /*Unimplemented*/Option<Fundamental: Pointer>;
38+
//fn document(&self) -> /*Unimplemented*/Option<Basic: Pointer>;
3939

4040
#[doc(alias = "atk_document_get_document_type")]
4141
#[doc(alias = "get_document_type")]
@@ -75,7 +75,7 @@ impl<O: IsA<Document>> DocumentExt for O {
7575
unsafe { ffi::atk_document_get_current_page_number(self.as_ref().to_glib_none().0) }
7676
}
7777

78-
//fn document(&self) -> /*Unimplemented*/Option<Fundamental: Pointer> {
78+
//fn document(&self) -> /*Unimplemented*/Option<Basic: Pointer> {
7979
// unsafe { TODO: call ffi:atk_document_get_document() }
8080
//}
8181

Diff for: atk/src/auto/object.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ pub trait AtkObjectExt: 'static {
8080
fn role(&self) -> Role;
8181

8282
//#[doc(alias = "atk_object_initialize")]
83-
//fn initialize(&self, data: /*Unimplemented*/Option<Fundamental: Pointer>);
83+
//fn initialize(&self, data: /*Unimplemented*/Option<Basic: Pointer>);
8484

8585
#[doc(alias = "atk_object_notify_state_change")]
8686
fn notify_state_change(&self, state: State, value: bool);
@@ -383,7 +383,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
383383
unsafe { from_glib(ffi::atk_object_get_role(self.as_ref().to_glib_none().0)) }
384384
}
385385

386-
//fn initialize(&self, data: /*Unimplemented*/Option<Fundamental: Pointer>) {
386+
//fn initialize(&self, data: /*Unimplemented*/Option<Basic: Pointer>) {
387387
// unsafe { TODO: call ffi:atk_object_initialize() }
388388
//}
389389

Diff for: atk/src/auto/versions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ c063b4567de5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 54e116a11822)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 7ebd4478b4a5)

Diff for: atk/sys/tests/abi.rs

+7-18
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,8 @@ fn cross_validate_constants_with_c() {
115115
let mut c_constants: Vec<(String, String)> = Vec::new();
116116

117117
for l in get_c_output("constant").unwrap().lines() {
118-
let mut words = l.trim().split(';');
119-
let name = words.next().expect("Failed to parse name").to_owned();
120-
let value = words
121-
.next()
122-
.and_then(|s| s.parse().ok())
123-
.expect("Failed to parse value");
124-
c_constants.push((name, value));
118+
let (name, value) = l.split_once(';').expect("Missing ';' separator");
119+
c_constants.push((name.to_owned(), value.to_owned()));
125120
}
126121

127122
let mut results = Results::default();
@@ -156,17 +151,11 @@ fn cross_validate_layout_with_c() {
156151
let mut c_layouts = Vec::new();
157152

158153
for l in get_c_output("layout").unwrap().lines() {
159-
let mut words = l.trim().split(';');
160-
let name = words.next().expect("Failed to parse name").to_owned();
161-
let size = words
162-
.next()
163-
.and_then(|s| s.parse().ok())
164-
.expect("Failed to parse size");
165-
let alignment = words
166-
.next()
167-
.and_then(|s| s.parse().ok())
168-
.expect("Failed to parse alignment");
169-
c_layouts.push((name, Layout { size, alignment }));
154+
let (name, value) = l.split_once(';').expect("Missing first ';' separator");
155+
let (size, alignment) = value.split_once(';').expect("Missing second ';' separator");
156+
let size = size.parse().expect("Failed to parse size");
157+
let alignment = alignment.parse().expect("Failed to parse alignment");
158+
c_layouts.push((name.to_owned(), Layout { size, alignment }));
170159
}
171160

172161
let mut results = Results::default();

Diff for: atk/sys/versions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ c063b4567de5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 54e116a11822)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 7ebd4478b4a5)

Diff for: gdk/src/auto/versions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ c063b4567de5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 54e116a11822)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 7ebd4478b4a5)

Diff for: gdk/src/auto/window.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ glib::wrapper! {
5252

5353
impl Window {
5454
//#[doc(alias = "gdk_window_add_filter")]
55-
//pub fn add_filter(&self, function: /*Unimplemented*/Fn(/*Unimplemented*/XEvent, &Event) -> /*Ignored*/FilterReturn, data: /*Unimplemented*/Option<Fundamental: Pointer>) {
55+
//pub fn add_filter(&self, function: /*Unimplemented*/Fn(/*Unimplemented*/XEvent, &Event) -> /*Ignored*/FilterReturn, data: /*Unimplemented*/Option<Basic: Pointer>) {
5656
// unsafe { TODO: call ffi:gdk_window_add_filter() }
5757
//}
5858

@@ -289,7 +289,7 @@ impl Window {
289289

290290
//#[doc(alias = "gdk_window_get_children_with_user_data")]
291291
//#[doc(alias = "get_children_with_user_data")]
292-
//pub fn children_with_user_data(&self, user_data: /*Unimplemented*/Option<Fundamental: Pointer>) -> Vec<Window> {
292+
//pub fn children_with_user_data(&self, user_data: /*Unimplemented*/Option<Basic: Pointer>) -> Vec<Window> {
293293
// unsafe { TODO: call ffi:gdk_window_get_children_with_user_data() }
294294
//}
295295

@@ -888,7 +888,7 @@ impl Window {
888888
}
889889

890890
//#[doc(alias = "gdk_window_remove_filter")]
891-
//pub fn remove_filter(&self, function: /*Unimplemented*/Fn(/*Unimplemented*/XEvent, &Event) -> /*Ignored*/FilterReturn, data: /*Unimplemented*/Option<Fundamental: Pointer>) {
891+
//pub fn remove_filter(&self, function: /*Unimplemented*/Fn(/*Unimplemented*/XEvent, &Event) -> /*Ignored*/FilterReturn, data: /*Unimplemented*/Option<Basic: Pointer>) {
892892
// unsafe { TODO: call ffi:gdk_window_remove_filter() }
893893
//}
894894

Diff for: gdk/sys/tests/abi.rs

+7-18
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,8 @@ fn cross_validate_constants_with_c() {
115115
let mut c_constants: Vec<(String, String)> = Vec::new();
116116

117117
for l in get_c_output("constant").unwrap().lines() {
118-
let mut words = l.trim().split(';');
119-
let name = words.next().expect("Failed to parse name").to_owned();
120-
let value = words
121-
.next()
122-
.and_then(|s| s.parse().ok())
123-
.expect("Failed to parse value");
124-
c_constants.push((name, value));
118+
let (name, value) = l.split_once(';').expect("Missing ';' separator");
119+
c_constants.push((name.to_owned(), value.to_owned()));
125120
}
126121

127122
let mut results = Results::default();
@@ -156,17 +151,11 @@ fn cross_validate_layout_with_c() {
156151
let mut c_layouts = Vec::new();
157152

158153
for l in get_c_output("layout").unwrap().lines() {
159-
let mut words = l.trim().split(';');
160-
let name = words.next().expect("Failed to parse name").to_owned();
161-
let size = words
162-
.next()
163-
.and_then(|s| s.parse().ok())
164-
.expect("Failed to parse size");
165-
let alignment = words
166-
.next()
167-
.and_then(|s| s.parse().ok())
168-
.expect("Failed to parse alignment");
169-
c_layouts.push((name, Layout { size, alignment }));
154+
let (name, value) = l.split_once(';').expect("Missing first ';' separator");
155+
let (size, alignment) = value.split_once(';').expect("Missing second ';' separator");
156+
let size = size.parse().expect("Failed to parse size");
157+
let alignment = alignment.parse().expect("Failed to parse alignment");
158+
c_layouts.push((name.to_owned(), Layout { size, alignment }));
170159
}
171160

172161
let mut results = Results::default();

Diff for: gdk/sys/versions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ c063b4567de5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 54e116a11822)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 7ebd4478b4a5)

Diff for: gdkx11/src/auto/versions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ c063b4567de5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 54e116a11822)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 7ebd4478b4a5)

Diff for: gdkx11/src/auto/x11_display.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ glib::wrapper! {
1919

2020
impl X11Display {
2121
//#[doc(alias = "gdk_x11_display_broadcast_startup_message")]
22-
//pub fn broadcast_startup_message(&self, message_type: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
22+
//pub fn broadcast_startup_message(&self, message_type: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
2323
// unsafe { TODO: call ffi:gdk_x11_display_broadcast_startup_message() }
2424
//}
2525

Diff for: gdkx11/sys/versions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ c063b4567de5)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 54e116a11822)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 7ebd4478b4a5)

Diff for: gtk/src/auto/accel_group.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub trait AccelGroupExt: 'static {
6363
fn disconnect_key(&self, accel_key: u32, accel_mods: gdk::ModifierType) -> bool;
6464

6565
//#[doc(alias = "gtk_accel_group_find")]
66-
//fn find(&self, find_func: /*Unimplemented*/FnMut(/*Ignored*/AccelKey, &glib::Closure) -> bool, data: /*Unimplemented*/Option<Fundamental: Pointer>) -> /*Ignored*/Option<AccelKey>;
66+
//fn find(&self, find_func: /*Unimplemented*/FnMut(/*Ignored*/AccelKey, &glib::Closure) -> bool, data: /*Unimplemented*/Option<Basic: Pointer>) -> /*Ignored*/Option<AccelKey>;
6767

6868
#[doc(alias = "gtk_accel_group_get_is_locked")]
6969
#[doc(alias = "get_is_locked")]
@@ -140,7 +140,7 @@ impl<O: IsA<AccelGroup>> AccelGroupExt for O {
140140
}
141141
}
142142

143-
//fn find(&self, find_func: /*Unimplemented*/FnMut(/*Ignored*/AccelKey, &glib::Closure) -> bool, data: /*Unimplemented*/Option<Fundamental: Pointer>) -> /*Ignored*/Option<AccelKey> {
143+
//fn find(&self, find_func: /*Unimplemented*/FnMut(/*Ignored*/AccelKey, &glib::Closure) -> bool, data: /*Unimplemented*/Option<Basic: Pointer>) -> /*Ignored*/Option<AccelKey> {
144144
// unsafe { TODO: call ffi:gtk_accel_group_find() }
145145
//}
146146

Diff for: gtk/src/auto/actionable.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub trait ActionableExt: 'static {
3939
fn set_action_name(&self, action_name: Option<&str>);
4040

4141
//#[doc(alias = "gtk_actionable_set_action_target")]
42-
//fn set_action_target(&self, format_string: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs);
42+
//fn set_action_target(&self, format_string: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs);
4343

4444
#[doc(alias = "gtk_actionable_set_action_target_value")]
4545
fn set_action_target_value(&self, target_value: Option<&glib::Variant>);
@@ -80,7 +80,7 @@ impl<O: IsA<Actionable>> ActionableExt for O {
8080
}
8181
}
8282

83-
//fn set_action_target(&self, format_string: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
83+
//fn set_action_target(&self, format_string: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
8484
// unsafe { TODO: call ffi:gtk_actionable_set_action_target() }
8585
//}
8686

Diff for: gtk/src/auto/buildable.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ pub trait BuildableExt: 'static {
3333
fn construct_child(&self, builder: &impl IsA<Builder>, name: &str) -> Option<glib::Object>;
3434

3535
//#[doc(alias = "gtk_buildable_custom_finished")]
36-
//fn custom_finished(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Fundamental: Pointer>);
36+
//fn custom_finished(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Basic: Pointer>);
3737

3838
//#[doc(alias = "gtk_buildable_custom_tag_end")]
39-
//fn custom_tag_end(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Fundamental: Pointer>);
39+
//fn custom_tag_end(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Basic: Pointer>);
4040

4141
//#[doc(alias = "gtk_buildable_custom_tag_start")]
42-
//fn custom_tag_start(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, parser: /*Ignored*/glib::MarkupParser, data: /*Unimplemented*/&mut Option<Fundamental: Pointer>) -> bool;
42+
//fn custom_tag_start(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, parser: /*Ignored*/glib::MarkupParser, data: /*Unimplemented*/&mut Option<Basic: Pointer>) -> bool;
4343

4444
#[doc(alias = "gtk_buildable_get_internal_child")]
4545
#[doc(alias = "get_internal_child")]
@@ -79,15 +79,15 @@ impl<O: IsA<Buildable>> BuildableExt for O {
7979
}
8080
}
8181

82-
//fn custom_finished(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Fundamental: Pointer>) {
82+
//fn custom_finished(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Basic: Pointer>) {
8383
// unsafe { TODO: call ffi:gtk_buildable_custom_finished() }
8484
//}
8585

86-
//fn custom_tag_end(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Fundamental: Pointer>) {
86+
//fn custom_tag_end(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, data: /*Unimplemented*/Option<Basic: Pointer>) {
8787
// unsafe { TODO: call ffi:gtk_buildable_custom_tag_end() }
8888
//}
8989

90-
//fn custom_tag_start(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, parser: /*Ignored*/glib::MarkupParser, data: /*Unimplemented*/&mut Option<Fundamental: Pointer>) -> bool {
90+
//fn custom_tag_start(&self, builder: &impl IsA<Builder>, child: Option<&impl IsA<glib::Object>>, tagname: &str, parser: /*Ignored*/glib::MarkupParser, data: /*Unimplemented*/&mut Option<Basic: Pointer>) -> bool {
9191
// unsafe { TODO: call ffi:gtk_buildable_custom_tag_start() }
9292
//}
9393

Diff for: gtk/src/auto/builder.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ pub trait BuilderExt: 'static {
6767
//fn add_callback_symbol<P: FnOnce() + 'static>(&self, callback_name: &str, callback_symbol: P);
6868

6969
//#[doc(alias = "gtk_builder_add_callback_symbols")]
70-
//fn add_callback_symbols<P: FnOnce() + 'static>(&self, first_callback_name: &str, first_callback_symbol: P, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs);
70+
//fn add_callback_symbols<P: FnOnce() + 'static>(&self, first_callback_name: &str, first_callback_symbol: P, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs);
7171

7272
//#[doc(alias = "gtk_builder_connect_signals")]
73-
//fn connect_signals(&self, user_data: /*Unimplemented*/Option<Fundamental: Pointer>);
73+
//fn connect_signals(&self, user_data: /*Unimplemented*/Option<Basic: Pointer>);
7474

7575
#[doc(alias = "gtk_builder_expose_object")]
7676
fn expose_object(&self, name: &str, object: &impl IsA<glib::Object>);
@@ -123,11 +123,11 @@ impl<O: IsA<Builder>> BuilderExt for O {
123123
// unsafe { TODO: call ffi:gtk_builder_add_callback_symbol() }
124124
//}
125125

126-
//fn add_callback_symbols<P: FnOnce() + 'static>(&self, first_callback_name: &str, first_callback_symbol: P, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
126+
//fn add_callback_symbols<P: FnOnce() + 'static>(&self, first_callback_name: &str, first_callback_symbol: P, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
127127
// unsafe { TODO: call ffi:gtk_builder_add_callback_symbols() }
128128
//}
129129

130-
//fn connect_signals(&self, user_data: /*Unimplemented*/Option<Fundamental: Pointer>) {
130+
//fn connect_signals(&self, user_data: /*Unimplemented*/Option<Basic: Pointer>) {
131131
// unsafe { TODO: call ffi:gtk_builder_connect_signals() }
132132
//}
133133

Diff for: gtk/src/auto/cell_area.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pub trait CellAreaExt: 'static {
7070
);
7171

7272
//#[doc(alias = "gtk_cell_area_add_with_properties")]
73-
//fn add_with_properties(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs);
73+
//fn add_with_properties(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs);
7474

7575
#[doc(alias = "gtk_cell_area_apply_attributes")]
7676
fn apply_attributes(
@@ -91,7 +91,7 @@ pub trait CellAreaExt: 'static {
9191
fn attribute_get_column(&self, renderer: &impl IsA<CellRenderer>, attribute: &str) -> i32;
9292

9393
//#[doc(alias = "gtk_cell_area_cell_get")]
94-
//fn cell_get(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs);
94+
//fn cell_get(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs);
9595

9696
#[doc(alias = "gtk_cell_area_cell_get_property")]
9797
fn cell_get_property(
@@ -104,7 +104,7 @@ pub trait CellAreaExt: 'static {
104104
//fn cell_get_valist(&self, renderer: &impl IsA<CellRenderer>, first_property_name: &str, var_args: /*Unknown conversion*//*Unimplemented*/Unsupported);
105105

106106
//#[doc(alias = "gtk_cell_area_cell_set")]
107-
//fn cell_set(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs);
107+
//fn cell_set(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs);
108108

109109
#[doc(alias = "gtk_cell_area_cell_set_property")]
110110
fn cell_set_property(
@@ -389,7 +389,7 @@ impl<O: IsA<CellArea>> CellAreaExt for O {
389389
}
390390
}
391391

392-
//fn add_with_properties(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
392+
//fn add_with_properties(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
393393
// unsafe { TODO: call ffi:gtk_cell_area_add_with_properties() }
394394
//}
395395

@@ -442,7 +442,7 @@ impl<O: IsA<CellArea>> CellAreaExt for O {
442442
}
443443
}
444444

445-
//fn cell_get(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
445+
//fn cell_get(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
446446
// unsafe { TODO: call ffi:gtk_cell_area_cell_get() }
447447
//}
448448

@@ -467,7 +467,7 @@ impl<O: IsA<CellArea>> CellAreaExt for O {
467467
// unsafe { TODO: call ffi:gtk_cell_area_cell_get_valist() }
468468
//}
469469

470-
//fn cell_set(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
470+
//fn cell_set(&self, renderer: &impl IsA<CellRenderer>, first_prop_name: &str, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
471471
// unsafe { TODO: call ffi:gtk_cell_area_cell_set() }
472472
//}
473473

Diff for: gtk/src/auto/cell_layout.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub trait CellLayoutExt: 'static {
5252
fn reorder(&self, cell: &impl IsA<CellRenderer>, position: i32);
5353

5454
//#[doc(alias = "gtk_cell_layout_set_attributes")]
55-
//fn set_attributes(&self, cell: &impl IsA<CellRenderer>, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs);
55+
//fn set_attributes(&self, cell: &impl IsA<CellRenderer>, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs);
5656

5757
#[doc(alias = "gtk_cell_layout_set_cell_data_func")]
5858
fn set_cell_data_func(
@@ -135,7 +135,7 @@ impl<O: IsA<CellLayout>> CellLayoutExt for O {
135135
}
136136
}
137137

138-
//fn set_attributes(&self, cell: &impl IsA<CellRenderer>, : /*Unknown conversion*//*Unimplemented*/Fundamental: VarArgs) {
138+
//fn set_attributes(&self, cell: &impl IsA<CellRenderer>, : /*Unknown conversion*//*Unimplemented*/Basic: VarArgs) {
139139
// unsafe { TODO: call ffi:gtk_cell_layout_set_attributes() }
140140
//}
141141

0 commit comments

Comments
 (0)