This commit is contained in:
Glenn Maynard
2006-02-14 11:16:39 +00:00
parent 958299c734
commit 62a0ac1370
10 changed files with 42 additions and 45 deletions
+2 -2
View File
@@ -309,8 +309,8 @@ bool Font::FontCompleteForString( const wstring &str ) const
void Font::CapsOnly()
{
/* For each uppercase character that we have a mapping for, add
* a lowercase one. */
for(char c = 'A'; c <= 'Z'; ++c)
* a lowercase one. */
for( char c = 'A'; c <= 'Z'; ++c )
{
map<longchar,glyph*>::const_iterator it = m_iCharToGlyph.find(c);