summaryrefslogtreecommitdiff
path: root/src/widget.cpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-08-14 17:14:04 +0000
committersmatz <smatz@openttd.org>2009-08-14 17:14:04 +0000
commit2d3ddab7ca440e8ca032efd7d15986a1f7b9129b (patch)
treed7b3f8aa85c6fbc4fcd7b7cdf8a6d930b94e3f3c /src/widget.cpp
parentc5533ae4708d85dcdff8e53515e17ab593f7f361 (diff)
downloadopenttd-2d3ddab7ca440e8ca032efd7d15986a1f7b9129b.tar.xz
(svn r17169) -Codechange: apply coding style to some for statements
Diffstat (limited to 'src/widget.cpp')
-rw-r--r--src/widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget.cpp b/src/widget.cpp
index 4ac79afa2..1e2d8b71c 100644
--- a/src/widget.cpp
+++ b/src/widget.cpp
@@ -2320,7 +2320,7 @@ bool CompareWidgetArrays(const Widget *orig, const Widget *gen, bool report)
}
bool same = true;
- for(int idx = 0; ; idx++) {
+ for (int idx = 0; ; idx++) {
const Widget *ow = orig + idx;
const Widget *gw = gen + idx;