f-spot r4629 - in trunk: . src/Core



Author: sdelcroix
Date: Wed Nov 26 14:12:39 2008
New Revision: 4629
URL: http://svn.gnome.org/viewvc/f-spot?rev=4629&view=rev

Log:
replace the public field by a public property

2008-11-26  Stephane Delcroix  <sdelcroix novell com>

	* src/Core/BrowsableItemChanges.cs: replace the public Instance field by
	a private field and a public property

Modified:
   trunk/ChangeLog
   trunk/src/Core/IBrowsableItemChanges.cs

Modified: trunk/src/Core/IBrowsableItemChanges.cs
==============================================================================
--- trunk/src/Core/IBrowsableItemChanges.cs	(original)
+++ trunk/src/Core/IBrowsableItemChanges.cs	Wed Nov 26 14:12:39 2008
@@ -17,7 +17,11 @@
 
 	public class FullInvalidate : IBrowsableItemChanges
 	{
-		public static FullInvalidate Instance = new FullInvalidate ();
+		static FullInvalidate instance = new FullInvalidate ();
+		public static FullInvalidate Instance {
+			get { return instance; } 
+		}
+
 		public bool DataChanged {
 			get { return true; }
 		}



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