[longomatch/redesign2: 56/159] Removing some tags stuff to make verything compile



commit e465b2f6ebf0fcc8f9e303b84f4bd6bb4122f18a
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Thu Jan 13 01:31:28 2011 +0100

    Removing some tags stuff to make verything compile

 LongoMatch/Gui/Component/TaggerWidget.cs |   18 ------------------
 LongoMatch/Gui/Dialog/TaggerDialog.cs    |   14 --------------
 2 files changed, 0 insertions(+), 32 deletions(-)
---
diff --git a/LongoMatch/Gui/Component/TaggerWidget.cs b/LongoMatch/Gui/Component/TaggerWidget.cs
index 914c4bb..ed58c1c 100644
--- a/LongoMatch/Gui/Component/TaggerWidget.cs
+++ b/LongoMatch/Gui/Component/TaggerWidget.cs
@@ -38,24 +38,6 @@ namespace LongoMatch.Gui.Component
 			table1.NColumns = 5;
 		}
 		
-		public TagsTemplate ProjectsTags{
-			set{
-				int tagsCount = value.Count();
-				scrolledwindow1.Visible = tagsCount > 0;
-				label1.Visible = !(tagsCount > 0);
-							
-				tagsDict.Clear();				
-				
-				foreach (Widget w in table1.AllChildren){
-					w.Unrealize();
-					table1.Remove(w);
-				}
-				
-				for(int i=0;i<tagsCount;i++){
-					AddTagWidget(value.GetTag(i), false);			
-				}
-			}
-		}		
 		
 		public List<Tag> Tags{
 			set{
diff --git a/LongoMatch/Gui/Dialog/TaggerDialog.cs b/LongoMatch/Gui/Dialog/TaggerDialog.cs
index 9124124..70de8f3 100644
--- a/LongoMatch/Gui/Dialog/TaggerDialog.cs
+++ b/LongoMatch/Gui/Dialog/TaggerDialog.cs
@@ -34,19 +34,5 @@ namespace LongoMatch.Gui.Dialog
 			buttonOk.Visible = false;
 		}
 		
-		public TagsTemplate ProjectTags{
-			set{
-				taggerwidget1.ProjectsTags = value;
-			}
-		}
-		
-		public List<Tag> Tags{
-			set{
-				taggerwidget1.Tags = value;
-			}
-			get{
-				return taggerwidget1.Tags;
-			}
-		}
 	}
 }



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