* Clears the tooltip text. * @param action Pointer to an action. */
| 329 | * @param action Pointer to an action. |
| 330 | */ |
| 331 | void OptionsBaseState::txtTooltipOut(Action *action) |
| 332 | { |
| 333 | if (_currentTooltip == action->getSender()->getTooltip()) |
| 334 | { |
| 335 | _txtTooltip->setText(L""); |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | /** |
| 340 | * Updates the scale. |
nothing calls this directly
no test coverage detected