| 102 | const StringID content_type; ///< STR_CONTENT_TYPE_xxx for title. |
| 103 | |
| 104 | BaseSetTextfileWindow(Window *parent, TextfileType file_type, const std::string &name, const std::string &textfile, StringID content_type) : TextfileWindow(parent, file_type), name(name), content_type(content_type) |
| 105 | { |
| 106 | this->ConstructWindow(); |
| 107 | this->LoadTextfile(textfile, BASESET_DIR); |
| 108 | } |
| 109 | |
| 110 | std::string GetWidgetString(WidgetID widget, StringID stringid) const override |
| 111 | { |
nothing calls this directly
no test coverage detected