summaryrefslogtreecommitdiff
path: root/src/order_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-09 02:33:10 +0000
committerrubidium <rubidium@openttd.org>2009-02-09 02:33:10 +0000
commit90e2465d7d2c770707feeaebfebbe56bd76383f1 (patch)
treeaa639d9f07d77989dca1ce7b2cf1a57a95a43c69 /src/order_gui.cpp
parent030f52e998b176087de5ad5f6b5c47a7e348bf16 (diff)
downloadopenttd-90e2465d7d2c770707feeaebfebbe56bd76383f1.tar.xz
(svn r15427) -Codechange: give w->caption_color a more sensible name as it holds the owner of whatever is shown in the window
Diffstat (limited to 'src/order_gui.cpp')
-rw-r--r--src/order_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/order_gui.cpp b/src/order_gui.cpp
index df28670c3..e229e84d4 100644
--- a/src/order_gui.cpp
+++ b/src/order_gui.cpp
@@ -623,7 +623,7 @@ private:
public:
OrdersWindow(const WindowDesc *desc, const Vehicle *v) : Window(desc, v->index)
{
- this->caption_color = v->owner;
+ this->owner = v->owner;
this->vscroll.cap = 6;
this->resize.step_height = 10;
this->selected_order = -1;