Commit 0224994dd28f710b4c6d1ecf3a9582c124b47894

henry 2002-12-08T05:07:52

Removed redundant member

diff --git a/include/FTVectoriser.h b/include/FTVectoriser.h
index 23905d4..0ee24db 100644
--- a/include/FTVectoriser.h
+++ b/include/FTVectoriser.h
@@ -123,12 +123,13 @@ class FTGL_EXPORT FTMesh
 
 /**
  * FTVectoriser class is a helper class that converts font outlines into
- * point data. It includes a bezier curve evaluator
+ * point data.
  *
+ * @see FTExtrdGlyph
  * @see FTOutlineGlyph
  * @see FTPolyGlyph
  * @see FTContour
- * @see ftPoint
+ * @see FTPoint
  *
  */
 class FTGL_EXPORT FTVectoriser
@@ -210,7 +211,7 @@ class FTGL_EXPORT FTVectoriser
         
     private:
         /**
-         * The list of contours in this outline
+         * The list of contours in the glyph
          */
         typedef FTVector<FTContour*> ContourVector;
         ContourVector contourList;
@@ -218,15 +219,10 @@ class FTGL_EXPORT FTVectoriser
         /**
          * A Mesh for tesselations
          */
-        FTContour* contour;
-            
-        /**
-         * A Mesh for tesselations
-         */
         FTMesh* mesh;
 
         /**
-        * A flag indicating the tesselation rule for this outline
+        * A flag indicating the tesselation rule for the glyph
          */
         int contourFlag;
 
diff --git a/src/FTVectoriser.cpp b/src/FTVectoriser.cpp
index b0cc217..58b9c91 100644
--- a/src/FTVectoriser.cpp
+++ b/src/FTVectoriser.cpp
@@ -103,8 +103,7 @@ int FTMesh::size() const
 
 
 FTVectoriser::FTVectoriser( const FT_Glyph glyph)
-:   contour(0),
-    mesh(0),
+:   mesh(0),
     contourFlag(0),
     kBSTEPSIZE( 0.2f)
 {
@@ -148,9 +147,9 @@ void FTVectoriser::ProcessContours()
         endIndex = ftOutline.contours[contourIndex];
         contourLength =  ( endIndex - startIndex) + 1;
 
-        FTContour* countour = new FTContour( pointList, tagList, contourLength);
+        FTContour* contour = new FTContour( pointList, tagList, contourLength);
         
-        contourList.push_back( countour);
+        contourList.push_back( contour);
         
         startIndex = endIndex + 1;
     }