[longomatch/redesign: 45/75] Remove the tags from the project, which are now in the categories



commit 94c161ab0fe8ade61b9828328b4d79f81d44252e
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Thu Jan 13 01:18:35 2011 +0100

    Remove the tags from the project, which are now in the categories

 LongoMatch/Store/Project.cs |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)
---
diff --git a/LongoMatch/Store/Project.cs b/LongoMatch/Store/Project.cs
index cf52972..966c999 100644
--- a/LongoMatch/Store/Project.cs
+++ b/LongoMatch/Store/Project.cs
@@ -59,7 +59,6 @@ namespace LongoMatch.Store
 			Categories = new Categories();
 			LocalTeamTemplate = new TeamTemplate();
 			VisitorTeamTemplate = new TeamTemplate();
-			Tags = new TagsTemplate();
 		}
 		#endregion
 
@@ -94,11 +93,6 @@ namespace LongoMatch.Store
 			set;
 		}
 		
-		public TagsTemplate Tags {
-			get;
-			set;
-		}
-		
 		#endregion
 
 		#region Public Methods
@@ -197,6 +191,13 @@ namespace LongoMatch.Store
 			        select play).ToList();
 		}
 		
+		public List<Tag> Tags {
+			get {
+				/* FIXME: Fix that when I have decide what to do with tags*/
+				return new List<Tag>();
+			}
+		}
+		
 		/// <summary>
 		/// Returns a <see cref="Gtk.TreeStore"/> in which project categories are
 		/// root nodes and their respectives plays child nodes



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