Changeset - r10053:c289289625e7
[Not reviewed]
master
0 1 0
peter1138 - 16 years ago 2008-09-01 08:57:33
peter1138@openttd.org
(svn r14215) -Cleanup (r13866): Strange line wrapping...
1 file changed with 2 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/signs_gui.cpp
Show inline comments
 
@@ -241,8 +241,7 @@ struct SignWindow : QueryStringBaseWindo
 
				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 : QueryStringBaseWindo
 
				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) {
0 comments (0 inline, 0 general)