* Set sprite and tool tip of the nested widget. * @param sprite The new sprite. * @param tool_tip The new tool_tip. */
| 1210 | * @param tool_tip The new tool_tip. |
| 1211 | */ |
| 1212 | void NWidgetCore::SetSpriteTip(SpriteID sprite, StringID tool_tip) |
| 1213 | { |
| 1214 | this->SetSprite(sprite); |
| 1215 | this->SetToolTip(tool_tip); |
| 1216 | } |
| 1217 | |
| 1218 | /** |
| 1219 | * Set the matrix dimension. |
nothing calls this directly
no test coverage detected