Commit 15012d0f6714715535468a364b45ab2bf578600f

sammy 2008-05-06T07:08:55

* Fix indentation by replacing a few tabs with spaces.

diff --git a/src/FTCharmap.cpp b/src/FTCharmap.cpp
index 27a096a..b09045b 100644
--- a/src/FTCharmap.cpp
+++ b/src/FTCharmap.cpp
@@ -93,5 +93,6 @@ unsigned int FTCharmap::FontIndex(const unsigned int characterCode)
 void FTCharmap::InsertIndex(const unsigned int characterCode,
                             const size_t containerIndex)
 {
-	charMap.insert(characterCode, static_cast<FTCharToGlyphIndexMap::GlyphIndex>(containerIndex));
+    charMap.insert(characterCode, static_cast<FTCharToGlyphIndexMap::GlyphIndex>(containerIndex));
 }
+
diff --git a/src/FTFace.cpp b/src/FTFace.cpp
index da9a166..7fd8154 100644
--- a/src/FTFace.cpp
+++ b/src/FTFace.cpp
@@ -49,7 +49,7 @@ FTFace::FTFace(const char* fontFilePath, bool precomputeKerning)
     }
 
     numGlyphs = (*ftFace)->num_glyphs;
-	hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
+    hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
 
     if(hasKerningTable && precomputeKerning)
     {
@@ -79,7 +79,7 @@ FTFace::FTFace(const unsigned char *pBufferBytes, size_t bufferSizeInBytes,
     }
 
     numGlyphs = (*ftFace)->num_glyphs;
-	hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
+    hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
 
     if(hasKerningTable && precomputeKerning)
     {