Implement as empty, returning FALSE, on Win32.
authorTor Lillqvist <tml@novell.com>
Wed, 12 Mar 2008 13:16:54 +0000 (13:16 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Wed, 12 Mar 2008 13:16:54 +0000 (13:16 +0000)
2008-03-12  Tor Lillqvist  <tml@novell.com>

* glocalfile.c (_g_local_file_has_trash_dir): Implement as empty,
returning FALSE, on Win32.

svn path=/trunk/; revision=6689

gio/ChangeLog
gio/glocalfile.c

index 3c09930..ccc58ee 100644 (file)
@@ -1,3 +1,8 @@
+2008-03-12  Tor Lillqvist  <tml@novell.com>
+
+       * glocalfile.c (_g_local_file_has_trash_dir): Implement as empty,
+       returning FALSE, on Win32.
+
 2008-03-11  Alexander Larsson  <alexl@redhat.com>
 
         * glocalfile.c:
index 60d8749..6f9221c 100644 (file)
@@ -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,