From f59eb3b2194826c73f56161497f4004b2313efa2 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 5 Feb 2004 00:19:57 +0000 Subject: renamed (Const)Iterator to (const_)iterator; changed size() to return an uint svn-id: r12722 --- gui/newgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gui/newgui.cpp') diff --git a/gui/newgui.cpp b/gui/newgui.cpp index ed60deb024..1745ee3838 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -459,7 +459,7 @@ void NewGui::drawChar(byte chr, int xx, int yy, NewGuiColor color) { int NewGui::getStringWidth(const String &str) { int space = 0; - for (int i = 0; i < str.size(); ++i) + for (uint i = 0; i < str.size(); ++i) space += getCharWidth(str[i]); return space; } @@ -483,7 +483,7 @@ int NewGui::getCharWidth(byte c) { void NewGui::drawString(const String &s, int x, int y, int w, NewGuiColor color, int align, int deltax, bool useEllipsis) { const int leftX = x, rightX = x + w; - int i; + uint i; int width = getStringWidth(s); String str; -- cgit v1.2.3