| 145 | |
| 146 | template <class T> |
| 147 | DropDownList BuildSetDropDownList(int *selected_index) |
| 148 | { |
| 149 | int n = T::GetNumSets(); |
| 150 | *selected_index = T::GetIndexOfUsedSet(); |
| 151 | DropDownList list; |
| 152 | for (int i = 0; i < n; i++) { |
| 153 | list.push_back(MakeDropDownListStringItem(GetListLabel(T::GetSet(i)), i)); |
| 154 | } |
| 155 | return list; |
| 156 | } |
| 157 | |
| 158 | std::set<int> _refresh_rates = { 30, 60, 75, 90, 100, 120, 144, 240 }; |
| 159 |
nothing calls this directly
no test coverage detected