mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 09:35:28 +00:00
remove extra referencers
This commit is contained in:
parent
6d7277d831
commit
a0e923eb7d
31 changed files with 43 additions and 48 deletions
|
|
@ -15,6 +15,6 @@ impl Default {
|
|||
}
|
||||
|
||||
pub fn gobject(&self) -> &Video {
|
||||
&self.widget.gobject()
|
||||
self.widget.gobject()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@ impl Gemini {
|
|||
|
||||
// Getters
|
||||
pub fn reader_title(&self) -> &Option<GString> {
|
||||
&self.reader.title()
|
||||
self.reader.title()
|
||||
}
|
||||
|
||||
pub fn gobject(&self) -> &ClampScrollable {
|
||||
&self.widget.gobject()
|
||||
self.widget.gobject()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -355,6 +355,6 @@ impl Reader {
|
|||
}
|
||||
|
||||
pub fn gobject(&self) -> &TextView {
|
||||
&self.widget.gobject()
|
||||
self.widget.gobject()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -75,30 +75,30 @@ impl Tag {
|
|||
}
|
||||
|
||||
pub fn code(&self) -> &TextTag {
|
||||
&self.code.gobject()
|
||||
self.code.gobject()
|
||||
}
|
||||
|
||||
pub fn h1(&self) -> &TextTag {
|
||||
&self.h1.gobject()
|
||||
self.h1.gobject()
|
||||
}
|
||||
|
||||
pub fn h2(&self) -> &TextTag {
|
||||
&self.h2.gobject()
|
||||
self.h2.gobject()
|
||||
}
|
||||
|
||||
pub fn h3(&self) -> &TextTag {
|
||||
&self.h3.gobject()
|
||||
self.h3.gobject()
|
||||
}
|
||||
|
||||
pub fn list(&self) -> &TextTag {
|
||||
&self.list.gobject()
|
||||
self.list.gobject()
|
||||
}
|
||||
|
||||
pub fn quote(&self) -> &TextTag {
|
||||
&self.quote.gobject()
|
||||
self.quote.gobject()
|
||||
}
|
||||
|
||||
pub fn title(&self) -> &TextTag {
|
||||
&self.title.gobject()
|
||||
self.title.gobject()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue