Commit 10ffeecefc3de87d7276d33a8d10b5f87ededc03

henry 2002-12-21T07:11:08

Refactored variable names

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/FTGlyphContainer.cpp b/src/FTGlyphContainer.cpp
index 6e75048..63061cf 100755
--- a/src/FTGlyphContainer.cpp
+++ b/src/FTGlyphContainer.cpp
@@ -14,12 +14,12 @@ FTGlyphContainer::FTGlyphContainer( FTFace* f)
 
 FTGlyphContainer::~FTGlyphContainer()
 {
-    GlyphVector::iterator iter;
-    for( iter = glyphs.begin(); iter != glyphs.end(); ++iter)
+    GlyphVector::iterator glyphIterator;
+    for( glyphIterator = glyphs.begin(); glyphIterator != glyphs.end(); ++glyphIterator)
     {
-        if( *iter)
+        if( *glyphIterator)
         {
-            delete *iter;
+            delete *glyphIterator;
         }
     }