Commit eb735e8f3bb2475d26d2c8d1ea23017246b0ee9d

henry 2001-08-05T21:46:24

Minor tidy ups

diff --git a/src/FTGLPolygonFont.cpp b/src/FTGLPolygonFont.cpp
index 8b1615b..7ad070a 100755
--- a/src/FTGLPolygonFont.cpp
+++ b/src/FTGLPolygonFont.cpp
@@ -1,5 +1,3 @@
-#include	"gl.h"
-
 #include	"FTGLPolygonFont.h"
 #include	"FTGlyphContainer.h"
 #include	"FTGL.h"
@@ -8,34 +6,23 @@
 
 
 FTGLPolygonFont::FTGLPolygonFont()
-//Insert your own initialization here.
-
-//End of user initialization.         
-{
-//Insert your own code here.
-
-//End of user code.         
-}
+:	tempGlyph(0)
+{}
 
 
 FTGLPolygonFont::~FTGLPolygonFont()
-{
-//Insert your own code here.
-
-//End of user code.         
-}
+{}
 
 
 bool FTGLPolygonFont::MakeGlyphList()
 {
+	FT_Face* ftFace = face.Face();
 	int glyphIndex;
 	
+	// FIXME
 	numGlyphs = 127;
-	
 	for( int n = 0; n < numGlyphs; ++n)
 	{
-		FT_Face* ftFace = face.Face();
-
 		glyphIndex = FT_Get_Char_Index( *ftFace, n);
 		
 		err = FT_Load_Glyph( *ftFace, glyphIndex, FT_LOAD_DEFAULT);