comparison src/ui_pathsel.c @ 1002:3096a47232ec

Use gpointer instead of void *.
author zas_
date Tue, 26 Aug 2008 22:37:18 +0000
parents 50e1f5e54c1a
children 1646720364cf
comparison
equal deleted inserted replaced
1001:d22e21bfd2a3 1002:3096a47232ec
143 143
144 #ifndef CASE_SORT 144 #ifndef CASE_SORT
145 #define CASE_SORT strcmp 145 #define CASE_SORT strcmp
146 #endif 146 #endif
147 147
148 static gint dest_sort_cb(void *a, void *b) 148 static gint dest_sort_cb(gpointer a, gpointer b)
149 { 149 {
150 return CASE_SORT((gchar *)a, (gchar *)b); 150 return CASE_SORT((gchar *)a, (gchar *)b);
151 } 151 }
152 152
153 static gint is_hidden(const gchar *name) 153 static gint is_hidden(const gchar *name)