From 6221d74644922ea4bbba3ed9cd8bbec42398f77b Mon Sep 17 00:00:00 2001 From: smatz Date: Sat, 16 May 2009 23:34:14 +0000 Subject: (svn r16325) -Codechange: replace GetPoolItem(index) by PoolItem::Get(index) --- src/waypoint_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/waypoint_gui.cpp') diff --git a/src/waypoint_gui.cpp b/src/waypoint_gui.cpp index 984b82b64..10f067677 100644 --- a/src/waypoint_gui.cpp +++ b/src/waypoint_gui.cpp @@ -35,7 +35,7 @@ private: public: WaypointWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number) { - this->wp = GetWaypoint(this->window_number); + this->wp = Waypoint::Get(this->window_number); if (this->wp->owner != OWNER_NONE) this->owner = this->wp->owner; this->flags4 |= WF_DISABLE_VP_SCROLL; -- cgit v1.2.3-54-g00ecf