From 41adc28093b5c92343ffe9129c48f8c364e8d88b Mon Sep 17 00:00:00 2001 From: glx Date: Tue, 20 May 2008 21:55:45 +0000 Subject: (svn r13202) -Fix (r13149): MSVC signed/unsigned warning --- src/bridge_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/bridge_gui.cpp b/src/bridge_gui.cpp index 745d96025..0ff0ac895 100644 --- a/src/bridge_gui.cpp +++ b/src/bridge_gui.cpp @@ -183,7 +183,7 @@ public: uint y = this->widget[BBSW_BRIDGE_LIST].top + 2; - for (uint i = this->vscroll.pos; (i < (this->vscroll.cap + this->vscroll.pos)) && (i < this->bridges->list_length); i++) { + for (int i = this->vscroll.pos; (i < (this->vscroll.cap + this->vscroll.pos)) && (i < this->bridges->list_length); i++) { const BridgeSpec *b = this->bridges->sort_list[i].spec; SetDParam(2, this->bridges->sort_list[i].cost); -- cgit v1.2.3-70-g09d2