1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 12:39:11 +00:00

(svn r15726) -Codechange: unify coding style for const pointers

This commit is contained in:
smatz
2009-03-15 16:04:39 +00:00
parent af293142fe
commit 8585aa71ed
11 changed files with 113 additions and 113 deletions

View File

@@ -118,7 +118,7 @@ protected:
static Listing last_sorting;
/* Constants for sorting servers */
static GUIGameServerList::SortFunction *const sorter_funcs[];
static GUIGameServerList::SortFunction * const sorter_funcs[];
byte field; ///< selected text-field
NetworkGameList *server; ///< selected server
@@ -760,7 +760,7 @@ public:
};
Listing NetworkGameWindow::last_sorting = {false, 5};
GUIGameServerList::SortFunction *const NetworkGameWindow::sorter_funcs[] = {
GUIGameServerList::SortFunction * const NetworkGameWindow::sorter_funcs[] = {
&NGameNameSorter,
&NGameClientSorter,
&NGameMapSizeSorter,