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



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

Log:
do not intialize to default values

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

	* src/Core/Global.cs: do not initialize default values

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

Modified: trunk/src/Core/Global.cs
==============================================================================
--- trunk/src/Core/Global.cs	(original)
+++ trunk/src/Core/Global.cs	Wed Nov 26 14:12:31 2008
@@ -45,7 +45,7 @@
 			get { return destination_profile; }
 		}
 
-		private static Gtk.IconTheme icon_theme = null;
+		private static Gtk.IconTheme icon_theme;
 		public static Gtk.IconTheme IconTheme {
 			get {
 				if (icon_theme == null) {
@@ -57,7 +57,7 @@
 		}
 
 #if GTK_2_12_2
-		private static string [] default_rc_files = null;
+		private static string [] default_rc_files;
 		public static string [] DefaultRcFiles {
 			get {
 				if (default_rc_files == null)
@@ -68,7 +68,7 @@
 		}
 #endif
 
-		private static Gtk.PageSetup page_setup = null;
+		private static Gtk.PageSetup page_setup;
 		public static Gtk.PageSetup PageSetup {
 			get { return page_setup; }
 			set { page_setup = value; }



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