diff options
author | MichaĆ Zimniewicz <michzimny@users.noreply.github.com> | 2018-02-14 23:54:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 23:54:19 +0100 |
commit | 969e3dd244337fc5e9262cb27931159bfeaf6c0c (patch) | |
tree | 1c0a2ce06509fc4f23ee1d2b7d387d41317d091b /Aktywator/Tournament.cs | |
parent | fa8e46acc24c5cf8b607531684b4c9858e4ebb33 (diff) | |
parent | 3a7b77ef81cc80e29d4f3f06a0bb66752e79c936 (diff) |
Merge pull request #40 from emkael/winter-bugfixes
Winter bugfixes
Diffstat (limited to 'Aktywator/Tournament.cs')
-rw-r--r-- | Aktywator/Tournament.cs | 2 |
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(); |