summaryrefslogtreecommitdiff
path: root/src/waypoint_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2012-10-07 12:14:39 +0000
committerfrosch <frosch@openttd.org>2012-10-07 12:14:39 +0000
commit738fca37bf9f4d1696e2eb6478d2f16027673b6e (patch)
tree5c7fc1ed7c1f48c06b09a2526083547c670c502a /src/waypoint_gui.cpp
parentd39a50e76e723a3750c014ed3db8d6640d6ae5c1 (diff)
downloadopenttd-738fca37bf9f4d1696e2eb6478d2f16027673b6e.tar.xz
(svn r24576) -Fix [FS#5319] (r24260): Vehicle list at buoys did no longer work. (Juanjo)
Diffstat (limited to 'src/waypoint_gui.cpp')
-rw-r--r--src/waypoint_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint_gui.cpp b/src/waypoint_gui.cpp
index 586ada925..202f7c7f6 100644
--- a/src/waypoint_gui.cpp
+++ b/src/waypoint_gui.cpp
@@ -107,7 +107,7 @@ public:
break;
case WID_W_SHOW_VEHICLES: // show list of vehicles having this waypoint in their orders
- ShowVehicleListWindow(this->owner, this->vt, this->wp->index);
+ ShowVehicleListWindow(this->wp->owner, this->vt, this->wp->index);
break;
}
}