From c1220546c4f9aa6f1d820aac0b38c0e24dd11bb9 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 4 Dec 2006 13:46:03 +0000 Subject: (svn r7355) -Codechange: replace 'for (i = 0; w->widget[i].type != WWT_TYPE; i++)'-type for loops with 'for (i = 0; i < w->widget_count; i++)'-type for loops --- order_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'order_gui.c') diff --git a/order_gui.c b/order_gui.c index 52061507e..0232fc49c 100644 --- a/order_gui.c +++ b/order_gui.c @@ -552,8 +552,8 @@ static void OrdersWndProc(Window *w, WindowEvent *e) case WE_TIMEOUT: { // handle button unclick ourselves... // unclick all buttons except for the 'goto' button (7), which is 'persistent' - int i; - for (i = 0; w->widget[i].type != WWT_LAST; i++) { + uint i; + for (i = 0; i < w->widget_count; i++) { if (IsWindowWidgetLowered(w, i) && i != 7) { RaiseWindowWidget(w, i); InvalidateWidget(w, i); -- cgit v1.2.3-54-g00ecf