summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2018-01-16 00:51:00 +0100
committeremkael <emkael@tlen.pl>2018-01-16 00:51:00 +0100
commit04af6640bb6f054adea7bd0f8d455857e3a81ebd (patch)
tree4d28fa4c15ed4641d5a25471da8a214c8c9b61b5
parent511333516d2e08daa9d6b148f5e908d63dc89238 (diff)
Pair/team numbers in names grid table added as numeric values.
Fixes #37
-rw-r--r--Aktywator/Resources/BuildDate.txt2
-rw-r--r--Aktywator/Tournament.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Aktywator/Resources/BuildDate.txt b/Aktywator/Resources/BuildDate.txt
index 0417c53..8e190cf 100644
--- a/Aktywator/Resources/BuildDate.txt
+++ b/Aktywator/Resources/BuildDate.txt
@@ -1 +1 @@
-2017-12-28
+2018-01-16
diff --git a/Aktywator/Tournament.cs b/Aktywator/Tournament.cs
index d6da2d4..5fd6772 100644
--- a/Aktywator/Tournament.cs
+++ b/Aktywator/Tournament.cs
@@ -96,7 +96,7 @@ namespace Aktywator
{
DataGridViewRow row = new DataGridViewRow();
row.Cells.Add(new DataGridViewTextBoxCell());
- row.Cells[0].Value = pairNumber.ToString();
+ row.Cells[0].Value = pairNumber;
foreach (string name in names)
{
DataGridViewTextBoxCell cell = new DataGridViewTextBoxCell();