comparison src/filefilter.h @ 736:a7289f9e8d29

Fix signed vs unsigned warnings. In most cases, gint was used instead of guint.
author zas_
date Thu, 22 May 2008 13:00:45 +0000
parents b690cecbf5b8
children 1646720364cf
comparison
equal deleted inserted replaced
735:df6c11709106 736:a7289f9e8d29
19 struct _FilterEntry { 19 struct _FilterEntry {
20 gchar *key; 20 gchar *key;
21 gchar *description; 21 gchar *description;
22 gchar *extensions; 22 gchar *extensions;
23 FileFormatClass file_class; 23 FileFormatClass file_class;
24 gint enabled; 24 gboolean enabled;
25 }; 25 };
26 26
27 /* you can change, but not add or remove entries from the returned list */ 27 /* you can change, but not add or remove entries from the returned list */
28 GList *filter_get_list(void); 28 GList *filter_get_list(void);
29 void filter_remove_entry(FilterEntry *fe); 29 void filter_remove_entry(FilterEntry *fe);