diff options
author | Kurt Zenker <kz@openoffice.org> | 2009-04-09 12:35:41 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2009-04-09 12:35:41 +0000 |
commit | 662a6980a1880de6a5cba0595f391fac349b364d (patch) | |
tree | 05f50edc280d547503ef4133024fd59655469c7e | |
parent | 2e3e47e8aaf223bad7cb6f383846978715c3b894 (diff) |
#i10000# typo fixed
-rw-r--r-- | vcl/source/fontsubset/sft.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/fontsubset/sft.cxx b/vcl/source/fontsubset/sft.cxx index 6723e01b97f1..10d4cf774b04 100644 --- a/vcl/source/fontsubset/sft.cxx +++ b/vcl/source/fontsubset/sft.cxx @@ -658,7 +658,7 @@ static int GetCompoundTTOutline(TrueTypeFont *ttf, sal_uInt32 glyphID, ControlPo fprintf(stderr, "%d -> ", index); fprintf(stderr," ["); for( std::vector< sal_uInt32 >::const_iterator it = glyphlist.begin(); - it != glpyhlist.end(); ++it ) + it != glyphlist.end(); ++it ) { fprintf( stderr,"%d ", (int) *it ); } @@ -685,12 +685,12 @@ static int GetCompoundTTOutline(TrueTypeFont *ttf, sal_uInt32 glyphID, ControlPo #ifdef DEBUG2 fprintf(stderr,"%d [", (int)glyphlist.size() ); for( std::vector< sal_uInt32 >::const_iterator it = glyphlist.begin(); - it != glpyhlist.end(); ++it ) + it != glyphlist.end(); ++it ) { fprintf( stderr,"%d ", (int) *it ); } fprintf(stderr, "]\n"); - if( ! glpyhlist.empty() ) + if( ! glyphlist.empty() ) fprintf(stderr, "glyphlist: -= %d\n", (int) glyphlist.back()); #endif |