[longomatch/redesign3: 130/143] Fix double method call
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch/redesign3: 130/143] Fix double method call
- Date: Mon, 15 Aug 2011 22:56:07 +0000 (UTC)
commit ef60818e436d7c20ce107918a005a2b53a7cca80
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]