summaryrefslogtreecommitdiff
path: root/src/gui/sdlfont.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/sdlfont.cpp')
-rw-r--r--src/gui/sdlfont.cpp6
1 files changed, 2 insertions, 4 deletions
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)
{