Add forgotten #ifdef G_OS_WIN32 to fix the build on linux.
authorChristian Persch <chpe@gnome.org>
Sat, 8 Dec 2007 14:29:37 +0000 (14:29 +0000)
committerChristian Persch <chpe@src.gnome.org>
Sat, 8 Dec 2007 14:29:37 +0000 (14:29 +0000)
2007-12-08  Christian Persch  <chpe@gnome.org>

* gio/glocalfileinfo.c: (get_thumbnail_attributes): Add forgotten
#ifdef G_OS_WIN32 to fix the build on linux.

svn path=/trunk/; revision=6074

ChangeLog
gio/glocalfileinfo.c

index 1e9aadb..6f2364b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-08  Christian Persch  <chpe@gnome.org>
+
+       * gio/glocalfileinfo.c: (get_thumbnail_attributes): Add forgotten
+       #ifdef G_OS_WIN32 to fix the build on linux.
+
 2007-12-08  Hans Breuer  <hans@breuer.org>
 
        * glib/makefile.msc.in : build gchecksum.obj
index 6428c0b..dac9f93 100644 (file)
@@ -1265,6 +1265,7 @@ get_thumbnail_attributes (const char *path,
   g_free (filename);
 }
 
+#ifdef G_OS_WIN32
 void
 win32_get_file_user_info (const gchar* filename,
                          gchar **group_name, 
@@ -1311,6 +1312,7 @@ win32_get_file_user_info (const gchar* filename,
     }
   g_free (wfilename);
 }
+#endif /* G_OS_WIN32 */
 
 GFileInfo *
 _g_local_file_info_get (const char             *basename,