remove comments

This commit is contained in:
Glenn Maynard
2003-01-10 03:54:29 +00:00
parent 57d90f6bc9
commit a738014538
+2 -4
View File
@@ -203,8 +203,7 @@ int Font::GetLineHeightInSourcePixels( const lstring &szLine ) const
/* The spacing of a line is the spacing of its tallest used font page. XXX */
for( unsigned i=0; i<szLine.size(); i++ )
iLineHeight = max(iLineHeight, GetGlyph(szLine[i]).fp->height);
// iLineSpacing = max(iLineSpacing, def->LineSpacing);
// ?
return iLineHeight;
}
@@ -215,8 +214,7 @@ int Font::GetLineSpacingInSourcePixels( const lstring &szLine ) const
/* The spacing of a line is the spacing of its tallest used font page. XXX */
for( unsigned i=0; i<szLine.size(); i++ )
iLineSpacing = max(iLineSpacing, GetGlyph(szLine[i]).fp->LineSpacing);
// iLineSpacing = max(iLineSpacing, def->LineSpacing);
// ?
return iLineSpacing;
}