* Set string and tool tip of the nested widget. * @param string The new string. * @param tool_tip The new tool_tip. */
| 1190 | * @param tool_tip The new tool_tip. |
| 1191 | */ |
| 1192 | void NWidgetCore::SetStringTip(StringID string, StringID tool_tip) |
| 1193 | { |
| 1194 | this->SetString(string); |
| 1195 | this->SetToolTip(tool_tip); |
| 1196 | } |
| 1197 | |
| 1198 | /** |
| 1199 | * Set sprite of the nested widget. |
no test coverage detected