summaryrefslogtreecommitdiff
path: root/src/station_gui.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-03-15 16:04:39 +0000
committersmatz <smatz@openttd.org>2009-03-15 16:04:39 +0000
commite0fe28fdc92d1629cabfbf4c9c44a087524a4c67 (patch)
treea6bd8322261ba82369954b60f7c54e610dd6a990 /src/station_gui.cpp
parentd28895c88ba94541c3e32a0d6f5b5981a8427368 (diff)
downloadopenttd-e0fe28fdc92d1629cabfbf4c9c44a087524a4c67.tar.xz
(svn r15726) -Codechange: unify coding style for const pointers
Diffstat (limited to 'src/station_gui.cpp')
-rw-r--r--src/station_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station_gui.cpp b/src/station_gui.cpp
index 550914f5f..28b82a3d5 100644
--- a/src/station_gui.cpp
+++ b/src/station_gui.cpp
@@ -122,7 +122,7 @@ protected:
/* Constants for sorting stations */
static const StringID sorter_names[];
- static GUIStationList::SortFunction *const sorter_funcs[];
+ static GUIStationList::SortFunction * const sorter_funcs[];
GUIStationList stations;
@@ -569,7 +569,7 @@ uint32 CompanyStationsWindow::cargo_filter = UINT32_MAX;
const Station *CompanyStationsWindow::last_station = NULL;
/* Availible station sorting functions */
-GUIStationList::SortFunction *const CompanyStationsWindow::sorter_funcs[] = {
+GUIStationList::SortFunction * const CompanyStationsWindow::sorter_funcs[] = {
&StationNameSorter,
&StationTypeSorter,
&StationWaitingSorter,