Commit 902bd172dff7b127285608f0d18b527492aa53f5

henry 2001-09-30T22:59:04

Changed FTVectorGlyph to FTOutlineGlyph

diff --git a/include/FTGLOutlineFont.h b/include/FTGLOutlineFont.h
index f586b6f..172100a 100755
--- a/include/FTGLOutlineFont.h
+++ b/include/FTGLOutlineFont.h
@@ -6,7 +6,7 @@
 #include "FTGL.h"
 
 
-class FTVectorGlyph;
+class FTOutlineGlyph;
 
 /**
  * FTGLOutlineFont is a specialisation of the FTFont class for handling
@@ -31,7 +31,7 @@ class	FTGLOutlineFont : public FTFont
 		bool MakeGlyphList();
 		
 		// attributes
-		FTVectorGlyph* tempGlyph;
+		FTOutlineGlyph* tempGlyph;
 	
 };
 #endif
diff --git a/src/FTGLOutlineFont.cpp b/src/FTGLOutlineFont.cpp
index bfe7122..9a06af9 100755
--- a/src/FTGLOutlineFont.cpp
+++ b/src/FTGLOutlineFont.cpp
@@ -3,7 +3,7 @@
 #include	"FTGLOutlineFont.h"
 #include	"FTGlyphContainer.h"
 #include	"FTGL.h"
-#include	"FTVectorGlyph.h"
+#include	"FTOutlineGlyph.h"
 
 
 FTGLOutlineFont::FTGLOutlineFont()
@@ -23,7 +23,7 @@ bool FTGLOutlineFont::MakeGlyphList()
 		
 		if( ftGlyph)
 		{
-			tempGlyph = new FTVectorGlyph( *ftGlyph);
+			tempGlyph = new FTOutlineGlyph( *ftGlyph);
 			glyphList->Add( tempGlyph);
 		}
 		else