diff options
author | smatz <smatz@openttd.org> | 2009-05-16 23:34:14 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-05-16 23:34:14 +0000 |
commit | 6221d74644922ea4bbba3ed9cd8bbec42398f77b (patch) | |
tree | 0069bbd6bb7525754c5d9353132f5dc64a0996cc /src/statusbar_gui.cpp | |
parent | 814f153b5a98e0030cbd221e6a89e083ce62bb1d (diff) | |
download | openttd-6221d74644922ea4bbba3ed9cd8bbec42398f77b.tar.xz |
(svn r16325) -Codechange: replace GetPoolItem(index) by PoolItem::Get(index)
Diffstat (limited to 'src/statusbar_gui.cpp')
-rw-r--r-- | src/statusbar_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statusbar_gui.cpp b/src/statusbar_gui.cpp index b376befff..20dcefb6d 100644 --- a/src/statusbar_gui.cpp +++ b/src/statusbar_gui.cpp @@ -94,7 +94,7 @@ struct StatusBarWindow : Window { virtual void OnPaint() { - const Company *c = (_local_company == COMPANY_SPECTATOR) ? NULL : GetCompany(_local_company); + const Company *c = (_local_company == COMPANY_SPECTATOR) ? NULL : Company::Get(_local_company); this->DrawWidgets(); SetDParam(0, _date); |