Commit 6165034e04220429515280e4f0a123f860ee9a20

henry 2001-09-16T21:50:28

Added error code (err) to initialisation list

diff --git a/include/FTGlyphContainer.h b/include/FTGlyphContainer.h
index 8e7c067..2283a6c 100755
--- a/include/FTGlyphContainer.h
+++ b/include/FTGlyphContainer.h
@@ -21,8 +21,6 @@ using namespace std;
 class	FTGlyphContainer
 {
 	public:
-		// methods
-
 		/**
 		 * Constructor
 		 */
@@ -46,13 +44,7 @@ class	FTGlyphContainer
 		 */
 		FT_Vector& render( unsigned int index, unsigned int next, FT_Vector pen);
 		
-		// attributes
-		
 	private:
-		// methods
-		
-		// attributes
-
 		/**
 		 *
 		 */
diff --git a/src/FTGlyphContainer.cpp b/src/FTGlyphContainer.cpp
index 0422752..ff31b14 100755
--- a/src/FTGlyphContainer.cpp
+++ b/src/FTGlyphContainer.cpp
@@ -5,14 +5,15 @@
 
 FTGlyphContainer::FTGlyphContainer( FTFace* f, int g, bool p)
 :	preCache( p),
-	numGlyphs(g),
-	face(f)
+	numGlyphs( g),
+	face( f),
+	err( 0)
 {
 	glyphs.reserve( g);
 }
 
 
-// OPSignature:  FTGlyphContainer:~FTGlyphContainer() 
+
 FTGlyphContainer::~FTGlyphContainer()
 {
 	vector<FTGlyph*>::iterator iter;