diff options
author | emkael <emkael@tlen.pl> | 2017-07-27 14:16:22 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-07-27 14:16:22 +0200 |
commit | 79bf7b0fa374e3f92c05dfa5dae34eef83d12a0c (patch) | |
tree | 6e80c9a9511e372e6a4abd88779e0d1548cf96f7 /Aktywator/Bws.cs | |
parent | 706d0a874b693252a4bab491226df876a819fb25 (diff) |
Storing setting checkbox-version number association separately from BWS operations
Diffstat (limited to 'Aktywator/Bws.cs')
-rw-r--r-- | Aktywator/Bws.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs index 14a97ad..0e574b8 100644 --- a/Aktywator/Bws.cs +++ b/Aktywator/Bws.cs @@ -78,7 +78,7 @@ namespace Aktywator return sections.ToArray(); } - public void initSettings() + public List<Setting> initSettings() { settings = new List<Setting>(); settings.Add(new Setting("ShowResults", main.xShowResults, this, new Version(2, 0, 0), new Version(1, 3, 1))); @@ -105,6 +105,7 @@ namespace Aktywator settings.Add(new Setting("BM2RecordBidding", main.xCollectBidding, this, new Version(2, 0, 0), new Version(1, 3, 1))); settings.Add(new Setting("BM2RecordPlay", main.xCollectPlay, this, new Version(2, 0, 0), new Version(1, 3, 1))); settings.Add(new Setting("BM2ValidateLeadCard", main.xCheckLeadCard, this, new Version(3, 2, 1), new Version(2, 2, 1))); + return settings; } private string getSectionList(string table) |