| 197 | } |
| 198 | |
| 199 | void Executable::RenameActiveOptions(const std::string& label) { |
| 200 | ExecutableOptions* options = this->GetActiveOptions(); |
| 201 | this->active_options = options->label = label; |
| 202 | |
| 203 | this->SortOptions(); |
| 204 | } |
| 205 | |
| 206 | std::string Executable::GetActiveOptionsName() const { return this->active_options; } |
| 207 |