diff options
author | peter1138 <peter1138@openttd.org> | 2008-09-01 08:57:33 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2008-09-01 08:57:33 +0000 |
commit | 1537b346c39cb23a35f5db24f961271bb94fd14e (patch) | |
tree | ba84e601b865000cf79800157d619943c2876a4f | |
parent | 242cbd00748513fcf36882c0d16518324b7c736a (diff) | |
download | openttd-1537b346c39cb23a35f5db24f961271bb94fd14e.tar.xz |
(svn r14215) -Cleanup (r13866): Strange line wrapping...
-rw-r--r-- | src/signs_gui.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp index ec0da0679..04089bd4e 100644 --- a/src/signs_gui.cpp +++ b/src/signs_gui.cpp @@ -241,8 +241,7 @@ struct SignWindow : QueryStringBaseWindow, SignList { this->SortSignsList(); /* By default pick the last entry */ - const Sign *si = this->signs[this->signs.Length( - ) - 1]; + const Sign *si = this->signs[this->signs.Length() - 1]; for (uint i = 1; i < this->signs.Length(); i++) { if (this->cur_sign == this->signs[i]->index) { @@ -265,8 +264,7 @@ struct SignWindow : QueryStringBaseWindow, SignList { this->SortSignsList(); /* By default pick the last entry */ - const Sign *si = this->signs[this->signs.Length( - ) - 1]; + const Sign *si = this->signs[this->signs.Length() - 1]; for (uint i = 0; i < this->signs.Length() - 1; i++) { if (this->cur_sign == this->signs[i]->index) { |