Switch deprecated gtk_icon_info_free to g_object_unref (#301)

This commit is contained in:
Stephen Collins 2019-05-13 01:23:40 -06:00 committed by JosephMcc
parent 17062aaa18
commit 1820d0db69
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ xed_file_browser_utils_pixbuf_from_icon (GIcon *icon,
}
ret = gtk_icon_info_load_icon (info, NULL);
gtk_icon_info_free (info);
g_object_unref (info);
return ret;
}