summaryrefslogtreecommitdiff
path: root/src/graph_gui.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-03-09 22:55:04 +0000
committerpeter1138 <peter1138@openttd.org>2007-03-09 22:55:04 +0000
commit53ee239945aaa379c2d350bc6bb59464d36c5541 (patch)
tree5688d3f83c1b097508ed82b9063fbbb4bffc6046 /src/graph_gui.cpp
parent9cfae085cb6d0d60cb37dd52737546fe3c198f96 (diff)
downloadopenttd-53ee239945aaa379c2d350bc6bb59464d36c5541.tar.xz
(svn r9079) -Codechange: add WWT_LAST widget when dynamically building cargo payment graph
Diffstat (limited to 'src/graph_gui.cpp')
-rw-r--r--src/graph_gui.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp
index ef3b62df8..f03e89d47 100644
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -799,8 +799,9 @@ void ShowCargoPaymentRates()
ResizeWindow(w, 0, num_active * 8);
/* Add widgets for each cargo type */
- w->widget_count = 3 + num_active;
- w->widget = ReallocT(w->widget, w->widget_count);
+ w->widget_count += num_active;
+ w->widget = ReallocT(w->widget, w->widget_count + 1);
+ w->widget[w->widget_count].type = WWT_LAST;
/* Set the properties of each widget */
for (uint i = 0; i != num_active; i++) {