Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit 9faa387

Browse files
committed
Regenerate
1 parent a2ebbb6 commit 9faa387

Some content is hidden

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

70 files changed

+385
-385
lines changed

atk/src/auto/object.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
489489
glib::ObjectExt::set_property(
490490
self.as_ref(),
491491
"accessible-description",
492-
&accessible_description,
492+
accessible_description,
493493
)
494494
}
495495

@@ -502,23 +502,23 @@ impl<O: IsA<Object>> AtkObjectExt for O {
502502
}
503503

504504
fn set_accessible_name(&self, accessible_name: Option<&str>) {
505-
glib::ObjectExt::set_property(self.as_ref(), "accessible-name", &accessible_name)
505+
glib::ObjectExt::set_property(self.as_ref(), "accessible-name", accessible_name)
506506
}
507507

508508
fn accessible_parent(&self) -> Option<Object> {
509509
glib::ObjectExt::property(self.as_ref(), "accessible-parent")
510510
}
511511

512512
fn set_accessible_parent<P: IsA<Object>>(&self, accessible_parent: Option<&P>) {
513-
glib::ObjectExt::set_property(self.as_ref(), "accessible-parent", &accessible_parent)
513+
glib::ObjectExt::set_property(self.as_ref(), "accessible-parent", accessible_parent)
514514
}
515515

516516
fn accessible_role(&self) -> Role {
517517
glib::ObjectExt::property(self.as_ref(), "accessible-role")
518518
}
519519

520520
fn set_accessible_role(&self, accessible_role: Role) {
521-
glib::ObjectExt::set_property(self.as_ref(), "accessible-role", &accessible_role)
521+
glib::ObjectExt::set_property(self.as_ref(), "accessible-role", accessible_role)
522522
}
523523

524524
fn accessible_table_caption(&self) -> Option<glib::GString> {
@@ -529,7 +529,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
529529
glib::ObjectExt::set_property(
530530
self.as_ref(),
531531
"accessible-table-caption",
532-
&accessible_table_caption,
532+
accessible_table_caption,
533533
)
534534
}
535535

@@ -544,7 +544,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
544544
glib::ObjectExt::set_property(
545545
self.as_ref(),
546546
"accessible-table-caption-object",
547-
&accessible_table_caption_object,
547+
accessible_table_caption_object,
548548
)
549549
}
550550

@@ -559,7 +559,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
559559
glib::ObjectExt::set_property(
560560
self.as_ref(),
561561
"accessible-table-column-description",
562-
&accessible_table_column_description,
562+
accessible_table_column_description,
563563
)
564564
}
565565

@@ -574,7 +574,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
574574
glib::ObjectExt::set_property(
575575
self.as_ref(),
576576
"accessible-table-column-header",
577-
&accessible_table_column_header,
577+
accessible_table_column_header,
578578
)
579579
}
580580

@@ -586,7 +586,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
586586
glib::ObjectExt::set_property(
587587
self.as_ref(),
588588
"accessible-table-row-description",
589-
&accessible_table_row_description,
589+
accessible_table_row_description,
590590
)
591591
}
592592

@@ -601,7 +601,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
601601
glib::ObjectExt::set_property(
602602
self.as_ref(),
603603
"accessible-table-row-header",
604-
&accessible_table_row_header,
604+
accessible_table_row_header,
605605
)
606606
}
607607

@@ -613,7 +613,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
613613
glib::ObjectExt::set_property(
614614
self.as_ref(),
615615
"accessible-table-summary",
616-
&accessible_table_summary,
616+
accessible_table_summary,
617617
)
618618
}
619619

@@ -622,7 +622,7 @@ impl<O: IsA<Object>> AtkObjectExt for O {
622622
}
623623

624624
fn set_accessible_value(&self, accessible_value: f64) {
625-
glib::ObjectExt::set_property(self.as_ref(), "accessible-value", &accessible_value)
625+
glib::ObjectExt::set_property(self.as_ref(), "accessible-value", accessible_value)
626626
}
627627

628628
fn connect_active_descendant_changed<F: Fn(&Self, &Object) + 'static>(

atk/src/auto/relation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ impl<O: IsA<Relation>> RelationExt for O {
9999
}
100100

101101
fn set_relation_type(&self, relation_type: RelationType) {
102-
glib::ObjectExt::set_property(self.as_ref(), "relation-type", &relation_type)
102+
glib::ObjectExt::set_property(self.as_ref(), "relation-type", relation_type)
103103
}
104104

105105
fn set_target(&self, target: Option<&glib::ValueArray>) {
106-
glib::ObjectExt::set_property(self.as_ref(), "target", &target)
106+
glib::ObjectExt::set_property(self.as_ref(), "target", target)
107107
}
108108

109109
fn connect_relation_type_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {

atk/src/auto/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c0ef822cedca)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 6d1aaead565c)

atk/sys/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c0ef822cedca)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 6d1aaead565c)

gdk/src/auto/device.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ impl<O: IsA<Device>> DeviceExt for O {
426426
}
427427

428428
fn set_input_mode(&self, input_mode: InputMode) {
429-
glib::ObjectExt::set_property(self.as_ref(), "input-mode", &input_mode)
429+
glib::ObjectExt::set_property(self.as_ref(), "input-mode", input_mode)
430430
}
431431

432432
fn input_source(&self) -> InputSource {
@@ -438,7 +438,7 @@ impl<O: IsA<Device>> DeviceExt for O {
438438
}
439439

440440
fn set_seat<P: IsA<Seat>>(&self, seat: Option<&P>) {
441-
glib::ObjectExt::set_property(self.as_ref(), "seat", &seat)
441+
glib::ObjectExt::set_property(self.as_ref(), "seat", seat)
442442
}
443443

444444
fn tool(&self) -> Option<DeviceTool> {

gdk/src/auto/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c0ef822cedca)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 6d1aaead565c)

gdk/sys/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c0ef822cedca)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 6d1aaead565c)

gdkx11/src/auto/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c0ef822cedca)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 6d1aaead565c)

gdkx11/sys/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ 425f84d5af7f)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 4eaad6a722bf)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c0ef822cedca)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 6d1aaead565c)

gtk/src/auto/application.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ impl<O: IsA<Application>> GtkApplicationExt for O {
390390
}
391391

392392
fn set_register_session(&self, register_session: bool) {
393-
glib::ObjectExt::set_property(self.as_ref(), "register-session", &register_session)
393+
glib::ObjectExt::set_property(self.as_ref(), "register-session", register_session)
394394
}
395395

396396
#[cfg(any(feature = "v3_24", feature = "dox"))]

0 commit comments

Comments
 (0)