summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLassebq <lassebq.mine@gmail.com>2023-10-15 13:13:04 +0300
committerGeronymos <gero@gmx.de>2023-10-16 17:14:36 +0200
commitab7cc816d6846061f61b9ad7baccd0acf1c3e290 (patch)
tree785e472c7f3455935eeec09a756c4dfbc01418df
parent341492d15df0221392c25f76b7833b539f91c1ea (diff)
Fix wrong pointer type
-rw-r--r--dicons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dicons.c b/dicons.c
index f39e2f5..ee75a20 100644
--- a/dicons.c
+++ b/dicons.c
@@ -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);