[longomatch/redesign2: 131/140] Fix double method call
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch/redesign2: 131/140] Fix double method call
- Date: Tue, 24 May 2011 22:07:06 +0000 (UTC)
commit be6022ff535290305c86749b8d6fe45a595e0068
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Wed Apr 27 22:55:12 2011 +0200
Fix double method call
LongoMatch/Gui/TreeView/ListTreeViewBase.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/LongoMatch/Gui/TreeView/ListTreeViewBase.cs b/LongoMatch/Gui/TreeView/ListTreeViewBase.cs
index 66830fd..9f6925d 100644
--- a/LongoMatch/Gui/TreeView/ListTreeViewBase.cs
+++ b/LongoMatch/Gui/TreeView/ListTreeViewBase.cs
@@ -76,9 +76,9 @@ namespace LongoMatch.Gui.Component
PlayListLoaded = false;
teams_name = new String[3];
- teams_name[(int)Team.NONE] = Catalog.GetString(Catalog.GetString("None"));
- teams_name[(int)Team.LOCAL] = Catalog.GetString(Catalog.GetString(LOCAL_TEAM));
- teams_name[(int)Team.VISITOR] = Catalog.GetString(Catalog.GetString(VISITOR_TEAM));
+ teams_name[(int)Team.NONE] = Catalog.GetString("None");
+ teams_name[(int)Team.LOCAL] = Catalog.GetString(LOCAL_TEAM);
+ teams_name[(int)Team.VISITOR] = Catalog.GetString(VISITOR_TEAM);
nameColumn = new Gtk.TreeViewColumn();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]