f-spot r3733 - trunk/src



Author: sdelcroix
Date: Wed Mar  5 12:19:57 2008
New Revision: 3733
URL: http://svn.gnome.org/viewvc/f-spot?rev=3733&view=rev

Log:
fixing bgo#517234 for good

Modified:
   trunk/src/FileImportBackend.cs

Modified: trunk/src/FileImportBackend.cs
==============================================================================
--- trunk/src/FileImportBackend.cs	(original)
+++ trunk/src/FileImportBackend.cs	Wed Mar  5 12:19:57 2008
@@ -5,6 +5,7 @@
 using System.Collections.Generic;
 using System;
 using FSpot;
+using FSpot.Utils;
 using FSpot.Xmp;
 using FSpot.UI.Dialog;
 using System.IO;
@@ -83,7 +84,7 @@
 		}
 
 		foreach (System.IO.FileInfo f in files) {
-			if (! existing_entries.Contains (new System.Uri (f.FullName))) {
+			if (! existing_entries.Contains (UriUtils.PathToFileUri (f.FullName))) {
 				AddPath (f.FullName);
 			}
 		}



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