Remove unused parameters from callbacks

This commit is contained in:
Elias Projahn 2025-02-16 16:30:24 +01:00
parent a8c66da52f
commit fca6ce841c
19 changed files with 35 additions and 37 deletions

View file

@ -79,7 +79,7 @@ impl MusicusSearchTag {
}
#[template_callback]
fn remove(&self, _: &gtk::Button) {
fn remove(&self) {
self.emit_by_name::<()>("remove", &[]);
}
}