diff options
author | rubidium <rubidium@openttd.org> | 2010-02-12 17:31:40 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-02-12 17:31:40 +0000 |
commit | 3108101cb2bbacc31dea7053a96cf52c44d8965a (patch) | |
tree | 8546e990abca43d60a7d4adf6c8baa4b167d3469 /src | |
parent | 7d5cfa58841d1fe68dfaa42901c8b230fa58a692 (diff) | |
download | openttd-3108101cb2bbacc31dea7053a96cf52c44d8965a.tar.xz |
(svn r19106) -Codechange: change 'const static' -> 'static const' for consistency (1 vs 2900 cases); some GCCs/ICCs are known to warn about the former case, but it's valid C++.
Diffstat (limited to 'src')
-rw-r--r-- | src/group_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group_gui.cpp b/src/group_gui.cpp index ccf534b1f..a510be802 100644 --- a/src/group_gui.cpp +++ b/src/group_gui.cpp @@ -690,7 +690,7 @@ static WindowDesc _other_group_desc( _nested_group_widgets, lengthof(_nested_group_widgets) ); -const static WindowDesc _train_group_desc( +static const WindowDesc _train_group_desc( WDP_AUTO, 525, 246, WC_TRAINS_LIST, WC_NONE, WDF_UNCLICK_BUTTONS, |