From 5fe2e21960a2005ff0347266d4bd7aebf277456e Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 12 Mar 2008 13:16:54 +0000 Subject: [PATCH] Implement as empty, returning FALSE, on Win32. 2008-03-12 Tor Lillqvist * glocalfile.c (_g_local_file_has_trash_dir): Implement as empty, returning FALSE, on Win32. svn path=/trunk/; revision=6689 --- gio/ChangeLog | 5 +++++ gio/glocalfile.c | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/gio/ChangeLog b/gio/ChangeLog index 3c09930..ccc58ee 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,8 @@ +2008-03-12 Tor Lillqvist + + * glocalfile.c (_g_local_file_has_trash_dir): Implement as empty, + returning FALSE, on Win32. + 2008-03-11 Alexander Larsson * glocalfile.c: diff --git a/gio/glocalfile.c b/gio/glocalfile.c index 60d8749..6f9221c 100644 --- a/gio/glocalfile.c +++ b/gio/glocalfile.c @@ -1917,6 +1917,12 @@ g_local_file_trash (GFile *file, return TRUE; } #else /* G_OS_WIN32 */ +gboolean +_g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev) +{ + return FALSE; /* XXX ??? */ +} + static gboolean g_local_file_trash (GFile *file, GCancellable *cancellable, -- 2.7.4