diff options
author | Lassebq <lassebq.mine@gmail.com> | 2023-10-15 13:13:04 +0300 |
---|---|---|
committer | Geronymos <gero@gmx.de> | 2023-10-16 17:14:36 +0200 |
commit | ab7cc816d6846061f61b9ad7baccd0acf1c3e290 (patch) | |
tree | 785e472c7f3455935eeec09a756c4dfbc01418df /dicons.c | |
parent | 341492d15df0221392c25f76b7833b539f91c1ea (diff) |
Fix wrong pointer type
Diffstat (limited to 'dicons.c')
-rw-r--r-- | dicons.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ void append_row_from_file(GtkListStore *store, GFile *file) GdkPixbuf *pixbuf; GAppInfo *app; const gchar *display_name = NULL; - GdkPixbuf *icon = NULL; + GIcon *icon = NULL; GKeyFile *keyfile = g_key_file_new (); file_info = g_file_query_info(file, "standard::*,ownser::user", 0, 0, 0); |