* Show the window to change the text of a sign. * @param si The sign to show the window for. */
| 587 | * @param si The sign to show the window for. |
| 588 | */ |
| 589 | void ShowRenameSignWindow(const Sign *si) |
| 590 | { |
| 591 | /* Delete all other edit windows */ |
| 592 | CloseWindowByClass(WC_QUERY_STRING); |
| 593 | |
| 594 | new SignWindow(_query_sign_edit_desc, si); |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * Close the sign window associated with the given sign. |
no test coverage detected