summaryrefslogtreecommitdiff
path: root/Aktywator/Tournament.cs
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 /Aktywator/Tournament.cs
parent511333516d2e08daa9d6b148f5e908d63dc89238 (diff)
Pair/team numbers in names grid table added as numeric values.
Fixes #37
Diffstat (limited to 'Aktywator/Tournament.cs')
-rw-r--r--Aktywator/Tournament.cs2
1 files changed, 1 insertions, 1 deletions
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();