From b98ac7072499df72817cad553fd77d2d85ac1c08 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 21 Feb 2015 14:09:16 +0100 Subject: Typo: trough->through Change-Id: I5af784709df88492695d1ac9c9a5b020e909f362 --- filter/source/graphicfilter/epict/epict.cxx | 8 ++++---- filter/source/graphicfilter/ipcd/ipcd.cxx | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'filter/source/graphicfilter') diff --git a/filter/source/graphicfilter/epict/epict.cxx b/filter/source/graphicfilter/epict/epict.cxx index f11528e0a714..93936b473a5c 100644 --- a/filter/source/graphicfilter/epict/epict.cxx +++ b/filter/source/graphicfilter/epict/epict.cxx @@ -969,7 +969,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize, for ( nc = 0; nc < 4; nc++ ) pComp[ nc ] = new sal_uInt8[ nWidth ]; - // loop trough rows: + // loop through rows: for ( ny = 0; ny < nHeight; ny++ ) { // read line ny of source into the intermediate data structure @@ -991,7 +991,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize, else pPict->WriteUChar( 0 ); - // loop trough components: + // loop through components: for ( nc = 0; nc < 4; nc++ ) { // loop through x: @@ -1146,7 +1146,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize, // remember position of the map-data in the target: nDstMapPos=pPict->Tell(); - // loop trough rows: + // loop through rows: for ( ny = 0; ny < nHeight; ny++ ) { // read line ny of source into the buffer: @@ -1186,7 +1186,7 @@ void PictWriter::WriteOpcode_BitsRect(const Point & rPoint, const Size & rSize, else pPict->WriteUChar( 0 ); - // loop trough bytes of the row: + // loop through bytes of the row: nx=0; while ( nx < nDstRowBytes && bStatus ) { diff --git a/filter/source/graphicfilter/ipcd/ipcd.cxx b/filter/source/graphicfilter/ipcd/ipcd.cxx index ee50d7ee1923..5ab1cfc6fd52 100644 --- a/filter/source/graphicfilter/ipcd/ipcd.cxx +++ b/filter/source/graphicfilter/ipcd/ipcd.cxx @@ -281,12 +281,12 @@ void PCDReader::ReadImage(sal_uLong nMinPercent, sal_uLong nMaxPercent) } } - // loop trough both rows of the pair of rows: + // loop through both rows of the pair of rows: for ( ndy = 0; ndy < 2; ndy++ ) { ny = ( nYPair << 1 ) + ndy; - // loop trough X: + // loop through X: for ( nx = 0; nx < nWidth; nx++ ) { // get/calculate nL,nCb,nCr for the pixel nx,ny: -- cgit