1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-10 14:13:23 +00:00

fix: remove unused parameter

This commit is contained in:
Charles Kerr 2022-04-01 11:40:36 -05:00
parent 4a439b58be
commit e89ac2a60b

View file

@ -108,7 +108,7 @@ Glib::RefPtr<Gdk::Pixbuf> get_file_icon_pixbuf(Gio::FileIcon& icon, int size)
{ {
return Gdk::Pixbuf::create_from_file(icon.get_file()->get_path(), size, -1, false); return Gdk::Pixbuf::create_from_file(icon.get_file()->get_path(), size, -1, false);
} }
catch (Glib::Error const& e) catch (Glib::Error const&)
{ {
return {}; return {};
} }