From 531433248fbad49e2b8e9d90de9855f3ea9b2257 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 20 Jan 2013 19:01:23 +0300 Subject: Another part with FOR_EACH changes. --- src/gui/sdlfont.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/gui/sdlfont.cpp') diff --git a/src/gui/sdlfont.cpp b/src/gui/sdlfont.cpp index 8cf0a4ffe..0f4629ef8 100644 --- a/src/gui/sdlfont.cpp +++ b/src/gui/sdlfont.cpp @@ -280,8 +280,7 @@ void SDLFont::drawString(gcn::Graphics *const graphics, int cnt = 0; #endif - for (CacheIterator i = cache->begin(), i_end = cache->end(); - i != i_end; ++ i) + FOR_EACH (CacheIterator, i, cache) { if (chunk == (*i)) { @@ -364,8 +363,7 @@ int SDLFont::getWidth(const std::string &text) const int cnt = 0; #endif - for (CacheIterator i = cache->begin(), i_end = cache->end(); - i != i_end; ++ i) + FOR_EACHP (CacheIterator, i, cache) { if (i->text == text) { -- cgit v1.2.3-60-g2f50