Changed FTVectorGlyph to FTOutlineGlyph
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
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