summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2021-03-13 15:09:09 +0100
committerPatric Stout <github@truebrain.nl>2021-03-14 11:04:14 +0100
commitc25847787e984d265a9195f27d704f302971fddc (patch)
tree5df33dad3dac1c16490d5d7eb7316486684dec76
parent4fe222d8536ef7fd9ec71f6f176c661a205bd7d1 (diff)
downloadopenttd-c25847787e984d265a9195f27d704f302971fddc.tar.xz
Codechange: we are not booing straps .. we are bootstrapping
-rw-r--r--src/bootstrap_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap_gui.cpp b/src/bootstrap_gui.cpp
index ff5cb0a7c..7495e08ba 100644
--- a/src/bootstrap_gui.cpp
+++ b/src/bootstrap_gui.cpp
@@ -120,7 +120,7 @@ public:
};
/** Nested widgets for the download window. */
-static const NWidgetPart _nested_boostrap_download_status_window_widgets[] = {
+static const NWidgetPart _nested_bootstrap_download_status_window_widgets[] = {
NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_CONTENT_DOWNLOAD_TITLE, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
NWidget(WWT_PANEL, COLOUR_GREY, WID_NCDS_BACKGROUND),
NWidget(NWID_SPACER), SetMinimalSize(350, 0), SetMinimalTextLines(3, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM + 30),
@@ -132,7 +132,7 @@ static WindowDesc _bootstrap_download_status_window_desc(
WDP_CENTER, nullptr, 0, 0,
WC_NETWORK_STATUS_WINDOW, WC_NONE,
WDF_MODAL,
- _nested_boostrap_download_status_window_widgets, lengthof(_nested_boostrap_download_status_window_widgets)
+ _nested_bootstrap_download_status_window_widgets, lengthof(_nested_bootstrap_download_status_window_widgets)
);