From 9b5ff794c7048fb2227b50264911210c2328cea4 Mon Sep 17 00:00:00 2001 From: terkhen Date: Thu, 25 Oct 2012 17:38:12 +0000 Subject: (svn r24626) -Fix [FS#5432]: MSVC 2010 warnings. --- src/group_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/group_gui.cpp') diff --git a/src/group_gui.cpp b/src/group_gui.cpp index e9817651c..a8aca15ad 100644 --- a/src/group_gui.cpp +++ b/src/group_gui.cpp @@ -511,7 +511,7 @@ public: y1 += this->tiny_step_height; } - if (this->group_sb->GetPosition() + this->group_sb->GetCapacity() > this->groups.Length()) { + if ((uint)this->group_sb->GetPosition() + this->group_sb->GetCapacity() > this->groups.Length()) { DrawGroupInfo(y1, r.left, r.right, NEW_GROUP); } break; -- cgit v1.2.3-54-g00ecf