Minor change to CharSize func
diff --git a/src/FTSize.cpp b/src/FTSize.cpp
index fae38b2..f5bf65f 100755
--- a/src/FTSize.cpp
+++ b/src/FTSize.cpp
@@ -13,9 +13,9 @@ FTSize::~FTSize()
{}
-bool FTSize::CharSize( FT_Face* ftFace, unsigned int point_size, unsigned int x_resolution, unsigned int y_resolution )
+bool FTSize::CharSize( FT_Face* face, unsigned int point_size, unsigned int x_resolution, unsigned int y_resolution )
{
- this->ftFace = ftFace;
+ ftFace = face;
size = point_size;
err = FT_Set_Char_Size( *ftFace, 0L, point_size * 64, x_resolution, y_resolution);