tracker r2490 - in trunk: . src/tracker-extract



Author: pvanhoof
Date: Thu Nov 13 10:20:55 2008
New Revision: 2490
URL: http://svn.gnome.org/viewvc/tracker?rev=2490&view=rev

Log:
2008-11-13  Philip Van Hoof  <philip codeminded be>

        * src/tracker-extract/tracker-albumart.c: Fixed symbol troubles for
        most recent GLib



Modified:
   trunk/ChangeLog
   trunk/src/tracker-extract/tracker-albumart.c

Modified: trunk/src/tracker-extract/tracker-albumart.c
==============================================================================
--- trunk/src/tracker-extract/tracker-albumart.c	(original)
+++ trunk/src/tracker-extract/tracker-albumart.c	Thu Nov 13 10:20:55 2008
@@ -85,12 +85,10 @@
 #endif /* HAVE_STRCASESTR */
 
 
-#if !GLIB_CHECK_VERSION (2, 18, 0)
-
 static gboolean
-g_file_make_directory_with_parents (GFile         *file,
-                                    GCancellable  *cancellable,
-                                    GError       **error)
+tracker_make_directory_with_parents (GFile         *file,
+                                     GCancellable  *cancellable,
+                                     GError       **error)
 {
   gboolean result;
   GFile *parent_file, *work_file;
@@ -147,7 +145,6 @@
 }
 
 
-#endif
 
 static gchar*
 strip_characters (const gchar *original)
@@ -278,7 +275,7 @@
 			GFile *dirf;
 
 			dirf = g_file_get_parent (local_file);
-			g_file_make_directory_with_parents (dirf, NULL, NULL);
+			tracker_make_directory_with_parents (dirf, NULL, NULL);
 			g_object_unref (dirf);
 
 			g_file_copy_async (from, local_file, 0, 0, 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]