tasque r5 - in trunk: . src



Author: calvinrg
Date: Wed Mar 12 22:52:10 2008
New Revision: 5
URL: http://svn.gnome.org/viewvc/tasque?rev=5&view=rev

Log:
* src/PreferencesDialog.cs: Updated to not include the All category in
  prefs dialog

Modified:
   trunk/ChangeLog
   trunk/src/PreferencesDialog.cs

Modified: trunk/src/PreferencesDialog.cs
==============================================================================
--- trunk/src/PreferencesDialog.cs	(original)
+++ trunk/src/PreferencesDialog.cs	Wed Mar 12 22:52:10 2008
@@ -478,9 +478,9 @@
 			
 			do {
 				ICategory cat = model.GetValue (iter, 0) as ICategory;
-				if (cat == null)
-					continue;
-				
+				if (cat == null || cat is AllCategory)
+					continue;				
+
 				list.Add (cat.Name);
 			} while (model.IterNext (ref iter) == true);
 			



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