Trim trailing white spaces on empty lines.
[geeqie.git] / src / trash.c
index f9a3e62..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
  *
@@ -15,7 +15,7 @@
 #include "trash.h"
 #include "utilops.h"
 
-
+#include "editors.h"
 #include "filedata.h"
 #include "ui_fileops.h"
 #include "ui_misc.h"
@@ -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;
 
@@ -181,7 +188,7 @@ gchar *file_util_safe_delete_status(void)
 {
        gchar *buf;
 
-       if (options->editor[CMD_DELETE].command)
+       if (is_valid_editor_command(CMD_DELETE))
                {
                buf = g_strdup(_("Deletion by external command"));
                }
@@ -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: */