Trim trailing white spaces on empty lines.
[geeqie.git] / src / trash.c
index deeb6d8..9ec05c2 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Geeqie
  * (C) 2006 John Ellis
- * Copyright (C) 2008 The Geeqie Team
+ * Copyright (C) 2008 - 2012 The Geeqie Team
  *
  * Author: John Ellis
  *
@@ -33,10 +33,17 @@ static gint file_util_safe_number(gint64 free_space)
        gint64 total = 0;
        GList *list;
        GList *work;
-       gint sorted = FALSE;
-       gint warned = FALSE;
+       gboolean sorted = FALSE;
+       gboolean warned = FALSE;
+       FileData *dir_fd;
 
-       if (!filelist_read(options->file_ops.safe_delete_path, &list, NULL)) return 0;
+       dir_fd = file_data_new_dir(options->file_ops.safe_delete_path);
+       if (!filelist_read(dir_fd, &list, NULL))
+               {
+               file_data_unref(dir_fd);
+               return 0;
+               }
+       file_data_unref(dir_fd);
 
        work = list;
        while (work)
@@ -115,11 +122,11 @@ static void file_util_safe_del_close_cb(GtkWidget *dialog, gpointer data)
        *gd = NULL;
 }
 
-gint file_util_safe_unlink(const gchar *path)
+gboolean file_util_safe_unlink(const gchar *path)
 {
        static GenericDialog *gd = NULL;
        gchar *result = NULL;
-       gint success = TRUE;
+       gboolean success = TRUE;
 
        if (!isfile(path)) return FALSE;
 
@@ -203,6 +210,7 @@ gchar *file_util_safe_delete_status(void)
                        buf = g_strdup_printf(_("Safe delete: %s"), _("off"));
                        }
                }
-               
+
        return buf;
 }
+/* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */