summaryrefslogtreecommitdiff
path: root/src/textfile_gui.h
diff options
context:
space:
mode:
authorHenry Wilson <m3henry@googlemail.com>2019-03-03 17:30:09 +0000
committerPeterN <peter@fuzzle.org>2019-03-26 20:15:57 +0000
commitc01a2e2a81d8e7bcd47d46292ed0b7d452081c31 (patch)
treeb38441ec8469136a6a2252f8c856d22f14ee689e /src/textfile_gui.h
parent6570f7989f5c1fc5a1276505a8e6efce7838efd9 (diff)
downloadopenttd-c01a2e2a81d8e7bcd47d46292ed0b7d452081c31.tar.xz
Codechange: Removed SmallVector completely
Diffstat (limited to 'src/textfile_gui.h')
-rw-r--r--src/textfile_gui.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/textfile_gui.h b/src/textfile_gui.h
index b7bcb2db7..b572fe09c 100644
--- a/src/textfile_gui.h
+++ b/src/textfile_gui.h
@@ -21,12 +21,12 @@ const char *GetTextfile(TextfileType type, Subdirectory dir, const char *filenam
/** Window for displaying a textfile */
struct TextfileWindow : public Window, MissingGlyphSearcher {
- TextfileType file_type; ///< Type of textfile to view.
- Scrollbar *vscroll; ///< Vertical scrollbar.
- Scrollbar *hscroll; ///< Horizontal scrollbar.
- char *text; ///< Lines of text from the NewGRF's textfile.
- SmallVector<const char *, 64> lines; ///< #text, split into lines in a table with lines.
- uint search_iterator; ///< Iterator for the font check search.
+ TextfileType file_type; ///< Type of textfile to view.
+ Scrollbar *vscroll; ///< Vertical scrollbar.
+ Scrollbar *hscroll; ///< Horizontal scrollbar.
+ char *text; ///< Lines of text from the NewGRF's textfile.
+ std::vector<const char *> lines; ///< #text, split into lines in a table with lines.
+ uint search_iterator; ///< Iterator for the font check search.
static const int TOP_SPACING = WD_FRAMETEXT_TOP; ///< Additional spacing at the top of the #WID_TF_BACKGROUND widget.
static const int BOTTOM_SPACING = WD_FRAMETEXT_BOTTOM; ///< Additional spacing at the bottom of the #WID_TF_BACKGROUND widget.