comparison src/history_list.c @ 1431:7e180091e0b7

More gboolean and tidy up.
author zas_
date Sat, 14 Mar 2009 11:26:43 +0000
parents 8b89e3ff286b
children 956aab097ea7
comparison
equal deleted inserted replaced
1430:7718e351bc45 1431:7e180091e0b7
60 } 60 }
61 } 61 }
62 return NULL; 62 return NULL;
63 } 63 }
64 64
65 gint history_list_load(const gchar *path) 65 gboolean history_list_load(const gchar *path)
66 { 66 {
67 FILE *f; 67 FILE *f;
68 gchar *key = NULL; 68 gchar *key = NULL;
69 gchar s_buf[1024]; 69 gchar s_buf[1024];
70 gchar *pathl; 70 gchar *pathl;
115 g_free(key); 115 g_free(key);
116 116
117 return TRUE; 117 return TRUE;
118 } 118 }
119 119
120 gint history_list_save(const gchar *path) 120 gboolean history_list_save(const gchar *path)
121 { 121 {
122 SecureSaveInfo *ssi; 122 SecureSaveInfo *ssi;
123 GList *list; 123 GList *list;
124 gchar *pathl; 124 gchar *pathl;
125 125