Commit 9e6774a5902f4efed8adfd05e3b5ae0bbd8b755f

henry 2001-08-27T03:15:35

Updated comments

diff --git a/include/FTGlyph.h b/include/FTGlyph.h
index a60428f..d852870 100755
--- a/include/FTGlyph.h
+++ b/include/FTGlyph.h
@@ -25,7 +25,7 @@ class FTGlyph
 		/**
 		 * Constructor
 		 *
-		 * @param glyphIndex	The glyph index
+		 * @param glyphIndex	The glyph index for this glyph
 		 */
 		FTGlyph( unsigned int glyphIndex);
 
@@ -35,7 +35,10 @@ class FTGlyph
 		virtual ~FTGlyph();
 
 		/**
+		 * Renders this glyph at the current pen position.
 		 *
+		 * @param v		The current pen position.
+		 * @return		The advance distance for this glyph.
 		 */
 		virtual float Render( const FT_Vector& v) = 0;
 
@@ -49,7 +52,7 @@ class FTGlyph
 		// attributes
 
 		/**
-		 *
+		 * The glyph index
 		 */
 		const unsigned int glyphIndex; // FIXME make this private
 		
diff --git a/include/FTLibrary.h b/include/FTLibrary.h
index 2c99218..ce922b9 100755
--- a/include/FTLibrary.h
+++ b/include/FTLibrary.h
@@ -79,8 +79,9 @@ class	FTLibrary
 		 * Even though this function indicates success via the return value,
 		 * clients can't see this so must check the error codes.
 		 *
-		 * @return	<code>true</code> if the Freetype library was successfully
-		 * 			initialised, <code>false</code> otherwise.
+		 * @return	<code>true</code> if the Freetype library was
+		 * 			successfully initialised, <code>false</code>
+		 * 			otherwise.
 		 */
 		bool Init();