summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-08-22 13:13:08 +0200
committeremkael <emkael@tlen.pl>2017-08-22 13:57:14 +0200
commitc3be44ed94e61c3c4bb6a69f0db891580ee7a037 (patch)
tree1e27944e7ed3279d3f82a55c5a960aa3ca02ccfc
parentdd57a2d7819112dad810c258a2b19f62c5b09fa6 (diff)
Filling empty player names with spaces so that "name n/a" message is not displayed in the bridgemate
-rw-r--r--Aktywator/ParyTournament.cs4
-rw-r--r--Aktywator/RRBTournament.cs6
-rw-r--r--Aktywator/TeamyTournament.cs4
3 files changed, 7 insertions, 7 deletions
diff --git a/Aktywator/ParyTournament.cs b/Aktywator/ParyTournament.cs
index 9a592d7..f467119 100644
--- a/Aktywator/ParyTournament.cs
+++ b/Aktywator/ParyTournament.cs
@@ -39,13 +39,13 @@ namespace Aktywator
{
pairs.Add(pairNo, new List<string>());
}
- pairs[pairNo].Add(dbData.IsDBNull(1) ? "" : dbData.GetString(1));
+ pairs[pairNo].Add(dbData.IsDBNull(1) ? " " : dbData.GetString(1));
}
foreach (KeyValuePair<int, List<string>> pair in pairs)
{
while (pair.Value.Count < 2)
{
- pair.Value.Add("");
+ pair.Value.Add(" ");
}
}
dbData.Close();
diff --git a/Aktywator/RRBTournament.cs b/Aktywator/RRBTournament.cs
index 20a3c21..a86e199 100644
--- a/Aktywator/RRBTournament.cs
+++ b/Aktywator/RRBTournament.cs
@@ -63,14 +63,14 @@ namespace Aktywator
{
if ("pauza".Equals(player.InnerText.Trim()))
{
- names[pairNo].Add("");
+ names[pairNo].Add(" ");
}
else
{
string[] name = player.InnerText.Trim().Split(' ');
if (name.Length > 0)
{
- name[0] = (name[0].Length > 0) ? name[0][0].ToString() : "";
+ name[0] = (name[0].Length > 0) ? name[0][0].ToString() : " ";
}
names[pairNo].Add(String.Join(" ", name));
}
@@ -81,7 +81,7 @@ namespace Aktywator
{
while (pair.Value.Count < 2)
{
- pair.Value.Add("");
+ pair.Value.Add(" ");
}
}
return names;
diff --git a/Aktywator/TeamyTournament.cs b/Aktywator/TeamyTournament.cs
index 7bc3496..78ce0e0 100644
--- a/Aktywator/TeamyTournament.cs
+++ b/Aktywator/TeamyTournament.cs
@@ -35,8 +35,8 @@ namespace Aktywator
while (dbData.Read())
{
List<string> names = new List<string>();
- names.Add(dbData.IsDBNull(1) ? "" : dbData.GetString(1));
- names.Add("");
+ names.Add(dbData.IsDBNull(1) ? " " : dbData.GetString(1));
+ names.Add(" ");
teams.Add(dbData.GetInt32(0), names);
}
dbData.Close();