Commit 08651a1d3020816319c106cc9ab1e11fd5899971

henry 2001-08-05T22:21:14

Minor tidy ups

diff --git a/include/FTGLOutlineFont.h b/include/FTGLOutlineFont.h
index 181d43d..ecb7274 100755
--- a/include/FTGLOutlineFont.h
+++ b/include/FTGLOutlineFont.h
@@ -1,8 +1,8 @@
 #ifndef		__FTGLOutlineFont
 #define		__FTGLOutlineFont
 
-#include	"FTFont.h"
 
+#include	"FTFont.h"
 #include "FTGL.h"
 
 
@@ -15,8 +15,6 @@ class	FTGLOutlineFont : public FTFont
 		FTGLOutlineFont();
 		~FTGLOutlineFont();
 		
-//		bool render( const char* string);
-		
 		// attributes
 		
 	private:
@@ -25,7 +23,6 @@ class	FTGLOutlineFont : public FTFont
 		
 		// attributes
 		FTVectorGlyph* tempGlyph;
-
-		
+	
 };
 #endif
diff --git a/src/FTGLOutlineFont.cpp b/src/FTGLOutlineFont.cpp
index 4753055..3a4f327 100755
--- a/src/FTGLOutlineFont.cpp
+++ b/src/FTGLOutlineFont.cpp
@@ -1,5 +1,3 @@
-#include	"gl.h"
-
 #include	"FTGLOutlineFont.h"
 #include	"FTGlyphContainer.h"
 #include	"FTGL.h"
@@ -8,31 +6,12 @@
 
 
 FTGLOutlineFont::FTGLOutlineFont()
-//Insert your own initialization here.
-
-//End of user initialization.         
-{
-//Insert your own code here.
-
-//End of user code.         
-}
+:	tempGlyph(0)
+{}
 
 
 FTGLOutlineFont::~FTGLOutlineFont()
-{
-//Insert your own code here.
-
-//End of user code.         
-}
-
-
-//bool FTGLOutlineFont::render( const char* string)
-//{
-//
-//	glBegin( GL_LINE_LOOP);
-//		FTFont::render( string);
-//	glEnd();
-//}
+{}
 
 
 bool FTGLOutlineFont::MakeGlyphList()
@@ -40,7 +19,6 @@ bool FTGLOutlineFont::MakeGlyphList()
 	int glyphIndex;
 	
 	numGlyphs = 127;
-	
 	for( int n = 0; n < numGlyphs; ++n)
 	{
 		FT_Face* ftFace = face.Face();