diff --git a/gio/ChangeLog b/gio/ChangeLog index 3c099303a..ccc58ee6e 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 60d87498c..6f9221c34 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,