diff options
author | rubidium <rubidium@openttd.org> | 2009-01-10 00:31:47 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-01-10 00:31:47 +0000 |
commit | 28ea38ae5572d99598aa400fb62eb38f5f7ffd7b (patch) | |
tree | 29e703244d28f29c8634b2d30f42b34852fe74bc /src/industry_gui.cpp | |
parent | 86d50b6415635d1f1fb87bd62f1e08aa7b8f0033 (diff) | |
download | openttd-28ea38ae5572d99598aa400fb62eb38f5f7ffd7b.tar.xz |
(svn r14949) -Cleanup: pointer coding style
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r-- | src/industry_gui.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp index 93a1121e1..721f7e5e5 100644 --- a/src/industry_gui.cpp +++ b/src/industry_gui.cpp @@ -643,7 +643,7 @@ public: { if (StrEmpty(str)) return; - Industry* i = GetIndustry(this->window_number); + Industry *i = GetIndustry(this->window_number); int line = this->editbox_line; i->production_rate[line] = ClampU(atoi(str), 0, 255); @@ -786,7 +786,7 @@ protected: } /** Sort industries by name */ - static int CDECL IndustryNameSorter(const Industry* const *a, const Industry* const *b) + static int CDECL IndustryNameSorter(const Industry * const *a, const Industry * const *b) { static char buf_cache[96]; static char buf[96]; @@ -804,14 +804,14 @@ protected: } /** Sort industries by type and name */ - static int CDECL IndustryTypeSorter(const Industry* const *a, const Industry* const *b) + static int CDECL IndustryTypeSorter(const Industry * const *a, const Industry * const *b) { int r = (*a)->type - (*b)->type; return (r == 0) ? IndustryNameSorter(a, b) : r; } /** Sort industries by production and name */ - static int CDECL IndustryProductionSorter(const Industry* const *a, const Industry* const *b) + static int CDECL IndustryProductionSorter(const Industry * const *a, const Industry * const *b) { int r = 0; @@ -828,7 +828,7 @@ protected: } /** Sort industries by transported cargo and name */ - static int CDECL IndustryTransportedCargoSorter(const Industry* const *a, const Industry* const *b) + static int CDECL IndustryTransportedCargoSorter(const Industry * const *a, const Industry * const *b) { int r = GetCargoTransportedSortValue(*a) - GetCargoTransportedSortValue(*b); return (r == 0) ? IndustryNameSorter(a, b) : r; @@ -882,7 +882,7 @@ public: int y = 28; // start of the list-widget for (int n = this->vscroll.pos; n < max; ++n) { - const Industry* i = this->industries[n]; + const Industry *i = this->industries[n]; const IndustrySpec *indsp = GetIndustrySpec(i->type); byte p = 0; @@ -970,7 +970,7 @@ Listing IndustryDirectoryWindow::last_sorting = {false, 0}; const Industry *IndustryDirectoryWindow::last_industry = NULL; /* Availible station sorting functions */ -GUIIndustryList::SortFunction* const IndustryDirectoryWindow::sorter_funcs[] = { +GUIIndustryList::SortFunction * const IndustryDirectoryWindow::sorter_funcs[] = { &IndustryNameSorter, &IndustryTypeSorter, &IndustryProductionSorter, |