| 568 | }; |
| 569 | |
| 570 | void ShowNewGRFTextfileWindow(Window *parent, TextfileType file_type, const GRFConfig *c) |
| 571 | { |
| 572 | parent->CloseChildWindowById(WC_TEXTFILE, file_type); |
| 573 | new NewGRFTextfileWindow(parent, file_type, c); |
| 574 | } |
| 575 | |
| 576 | typedef std::map<uint32_t, const GRFConfig *> GrfIdMap; ///< Map of grfid to the grf config. |
| 577 |
no test coverage detected