diff options
Diffstat (limited to 'Aktywator/Bws.cs')
-rw-r--r-- | Aktywator/Bws.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs index 31686c9..4400272 100644 --- a/Aktywator/Bws.cs +++ b/Aktywator/Bws.cs @@ -358,7 +358,7 @@ namespace Aktywator throw new InvalidCastException("Unable to read numeric value from BWS field"); } - public void syncNames(Tournament tournament, bool interactive, string startRounds) + public void syncNames(Tournament tournament, bool interactive, string startRounds, DataGridView grid) { int count = 0, countNew = 0, SKOK_STOLOW = 100; OleDbDataReader d; @@ -382,7 +382,7 @@ namespace Aktywator try { - Dictionary<int, List<String>> names = tournament.getNameList(); + Dictionary<int, List<String>> names = tournament.getBWSNames(grid); while (d.Read()) { |