Commit 42c4d60002692cc035e5a4a0d24ca406dd928e41

henry 2001-09-17T21:00:48

Minor change to CharSize func

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);