refactor: set unused parameters in TabLabel as unused

merge-requests/23/head
Nefo Fortressia 2021-12-18 17:30:28 +07:00
parent 9b99932fdd
commit b53915afa0
Signed by: fortressia
GPG Key ID: 6D7972CC76174995
1 changed files with 2 additions and 2 deletions

View File

@ -36,9 +36,9 @@ impl BuildableImpl for TabLabel {
fn add_child( fn add_child(
&self, &self,
buildable: &Self::Type, buildable: &Self::Type,
builder: &gtk::Builder, _builder: &gtk::Builder,
child: &glib::Object, child: &glib::Object,
type_: Option<&str>, _type_: Option<&str>,
) { ) {
buildable.prepend(child.downcast_ref::<gtk::Widget>().unwrap()); buildable.prepend(child.downcast_ref::<gtk::Widget>().unwrap());
} }