remove extra referencers

This commit is contained in:
yggverse 2024-11-08 05:09:19 +02:00
parent 6d7277d831
commit a0e923eb7d
31 changed files with 43 additions and 48 deletions

View file

@ -81,6 +81,6 @@ impl Response {
// Getters
pub fn gobject(&self) -> &Box {
&self.widget.gobject()
self.widget.gobject()
}
}

View file

@ -45,6 +45,6 @@ impl Control {
// Getters
pub fn gobject(&self) -> &Box {
&self.widget.gobject()
self.widget.gobject()
}
}

View file

@ -26,6 +26,6 @@ impl Counter {
// Getters
pub fn gobject(&self) -> &Label {
&self.widget.gobject()
self.widget.gobject()
}
}

View file

@ -26,6 +26,6 @@ impl Send {
// Getters
pub fn gobject(&self) -> &Button {
&self.widget.gobject()
self.widget.gobject()
}
}

View file

@ -30,6 +30,6 @@ impl Form {
}
pub fn gobject(&self) -> &TextView {
&self.widget.gobject()
self.widget.gobject()
}
}

View file

@ -21,6 +21,6 @@ impl Title {
// Getters
pub fn gobject(&self) -> &Label {
&self.widget.gobject()
self.widget.gobject()
}
}

View file

@ -66,6 +66,6 @@ impl Sensitive {
// Getters
pub fn gobject(&self) -> &Box {
&self.widget.gobject()
self.widget.gobject()
}
}

View file

@ -35,6 +35,6 @@ impl Form {
}
pub fn gobject(&self) -> &PasswordEntryRow {
&self.widget.gobject()
self.widget.gobject()
}
}