diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2014-11-10 15:05:25 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-11-12 11:04:11 +0000 |
commit | da40cac540e7d735edbe9069b3c8ec6af4530208 (patch) | |
tree | f2abda7281129e13f588c77b18780a7090c8405f /vcl/generic/print/glyphset.cxx | |
parent | bb437029c1e5331bcc3f8fb2fc87837142a52f33 (diff) |
Fix common typos. No automatic tools. Handmade…
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959
Reviewed-on: https://gerrit.libreoffice.org/12164
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/generic/print/glyphset.cxx')
-rw-r--r-- | vcl/generic/print/glyphset.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vcl/generic/print/glyphset.cxx b/vcl/generic/print/glyphset.cxx index 5c81214cfc0f..285ee4b478c6 100644 --- a/vcl/generic/print/glyphset.cxx +++ b/vcl/generic/print/glyphset.cxx @@ -95,7 +95,7 @@ GlyphSet::LookupCharID ( char_list_t::iterator aGlyphSet; sal_Int32 nGlyphSetID; - // loop thru all the font subsets + // loop through all the font subsets for (aGlyphSet = maCharList.begin(), nGlyphSetID = 1; aGlyphSet != maCharList.end(); ++aGlyphSet, nGlyphSetID++) @@ -126,7 +126,7 @@ GlyphSet::LookupGlyphID ( glyph_list_t::iterator aGlyphSet; sal_Int32 nGlyphSetID; - // loop thru all the font subsets + // loop through all the font subsets for (aGlyphSet = maGlyphList.begin(), nGlyphSetID = 1; aGlyphSet != maGlyphList.end(); ++aGlyphSet, nGlyphSetID++) @@ -604,7 +604,7 @@ GlyphSet::PSUploadEncoding(osl::File* pOutFile, PrinterGfx &rGfx) PrintFontManager &rMgr = rGfx.GetFontMgr(); - // loop thru all the font subsets + // loop through all the font subsets sal_Int32 nGlyphSetID = 0; char_list_t::iterator aGlyphSet; for (aGlyphSet = maCharList.begin(); aGlyphSet != maCharList.end(); ++aGlyphSet) @@ -648,7 +648,7 @@ GlyphSet::PSUploadEncoding(osl::File* pOutFile, PrinterGfx &rGfx) } ps_mapping_t::const_iterator aSortedGlyph; - // loop thru all the glyphs in the subset + // loop through all the glyphs in the subset for (aSortedGlyph = (aSortedGlyphSet).begin(); aSortedGlyph != (aSortedGlyphSet).end(); ++aSortedGlyph) @@ -755,7 +755,7 @@ GlyphSet::PSUploadFont (osl::File& rOutFile, PrinterGfx &rGfx, bool bAllowType42 sal_uInt16 pTTGlyphMapping[256]; const bool bAllowCID = false; // TODO: nPSLanguageLevel>=3 - // loop thru all the font subsets + // loop through all the font subsets sal_Int32 nCharSetID; char_list_t::iterator aCharSet; for (aCharSet = maCharList.begin(), nCharSetID = 1; @@ -765,7 +765,7 @@ GlyphSet::PSUploadFont (osl::File& rOutFile, PrinterGfx &rGfx, bool bAllowType42 if ((*aCharSet).empty()) continue; - // loop thru all the chars in the subset + // loop through all the chars in the subset char_map_t::const_iterator aChar; sal_Int32 n = 0; for (aChar = (*aCharSet).begin(); aChar != (*aCharSet).end(); ++aChar) @@ -787,7 +787,7 @@ GlyphSet::PSUploadFont (osl::File& rOutFile, PrinterGfx &rGfx, bool bAllowType42 rSuppliedFonts.push_back( aCharSetName ); } - // loop thru all the font glyph subsets + // loop through all the font glyph subsets sal_Int32 nGlyphSetID; glyph_list_t::iterator aGlyphSet; for (aGlyphSet = maGlyphList.begin(), nGlyphSetID = 1; @@ -797,7 +797,7 @@ GlyphSet::PSUploadFont (osl::File& rOutFile, PrinterGfx &rGfx, bool bAllowType42 if ((*aGlyphSet).empty()) continue; - // loop thru all the glyphs in the subset + // loop through all the glyphs in the subset glyph_map_t::const_iterator aGlyph; sal_Int32 n = 0; for (aGlyph = (*aGlyphSet).begin(); aGlyph != (*aGlyphSet).end(); ++aGlyph) |