| 253 | } |
| 254 | |
| 255 | void OptionsAdvancedState::lstOptionsMouseOver(Action *) |
| 256 | { |
| 257 | size_t sel = _lstOptions->getSelectedRow(); |
| 258 | OptionInfo *setting = getSetting(sel); |
| 259 | std::wstring desc; |
| 260 | if (setting) |
| 261 | { |
| 262 | desc = tr(setting->description() + "_DESC"); |
| 263 | } |
| 264 | _txtTooltip->setText(desc.c_str()); |
| 265 | } |
| 266 | |
| 267 | void OptionsAdvancedState::lstOptionsMouseOut(Action *) |
| 268 | { |
nothing calls this directly
no test coverage detected