| 138 | */ |
| 139 | template <typename TBaseSet> |
| 140 | static std::string GetListLabel(const TBaseSet *baseset) |
| 141 | { |
| 142 | if (baseset->GetNumInvalid() == 0) return GetString(STR_JUST_RAW_STRING, baseset->name); |
| 143 | return GetString(STR_BASESET_STATUS, baseset->name, baseset->GetNumInvalid()); |
| 144 | } |
| 145 | |
| 146 | template <class T> |
| 147 | DropDownList BuildSetDropDownList(int *selected_index) |
no test coverage detected