Mercurial > geeqie.yaz
comparison src/trash.c @ 600:9c28465c95d1
Tidy up.
author | zas_ |
---|---|
date | Tue, 06 May 2008 23:58:08 +0000 |
parents | 5da092a6a92a |
children | 8268cbe682f1 |
comparison
equal
deleted
inserted
replaced
599:a843ca1d9dd2 | 600:9c28465c95d1 |
---|---|
108 GenericDialog **gd = data; | 108 GenericDialog **gd = data; |
109 | 109 |
110 *gd = NULL; | 110 *gd = NULL; |
111 } | 111 } |
112 | 112 |
113 gint file_util_safe_unlink(const char *path) | 113 gint file_util_safe_unlink(const gchar *path) |
114 { | 114 { |
115 static GenericDialog *gd = NULL; | 115 static GenericDialog *gd = NULL; |
116 gchar *result = NULL; | 116 gchar *result = NULL; |
117 gint success = TRUE; | 117 gint success = TRUE; |
118 | 118 |
170 } | 170 } |
171 | 171 |
172 return success; | 172 return success; |
173 } | 173 } |
174 | 174 |
175 char *file_util_safe_delete_status(void) | 175 gchar *file_util_safe_delete_status(void) |
176 { | 176 { |
177 gchar *buf; | 177 gchar *buf; |
178 | 178 |
179 if (options->editor_command[CMD_DELETE]) | 179 if (options->editor_command[CMD_DELETE]) |
180 { | 180 { |
199 } | 199 } |
200 } | 200 } |
201 | 201 |
202 return buf; | 202 return buf; |
203 } | 203 } |
204 |