Kaydet (Commit) e2e5689a authored tarafından Julien Nabet's avatar Julien Nabet

Typos

Change-Id: I101d2c40bc08130f719f52494d95ab60d1d97e0f
üst 128aeab3
......@@ -670,7 +670,7 @@ bool Region::Intersect( const Rectangle& rRect )
const long nRight(std::max(rRect.Left(), rRect.Right()));
const long nBottom(std::max(rRect.Top(), rRect.Bottom()));
// insert bands if the boundaries are not allready in the list
// insert bands if the boundaries are not already in the list
pNew->InsertBands(nTop, nBottom);
// process intersect
......@@ -751,7 +751,7 @@ bool Region::Exclude( const Rectangle& rRect )
const long nRight(std::max(rRect.Left(), rRect.Right()));
const long nBottom(std::max(rRect.Top(), rRect.Bottom()));
// insert bands if the boundaries are not allready in the list
// insert bands if the boundaries are not already in the list
pNew->InsertBands(nTop, nBottom);
// process exclude
......@@ -836,7 +836,7 @@ bool Region::XOr( const Rectangle& rRect )
const long nRight(std::max(rRect.Left(), rRect.Right()));
const long nBottom(std::max(rRect.Top(), rRect.Bottom()));
// insert bands if the boundaries are not allready in the list
// insert bands if the boundaries are not already in the list
pNew->InsertBands(nTop, nBottom);
// process xor
......
......@@ -936,7 +936,7 @@ void RegionBand::Union(const RegionBand& rSource)
while ( pBand )
{
// insert bands if the boundaries are not allready in the list
// insert bands if the boundaries are not already in the list
InsertBands(pBand->mnYTop, pBand->mnYBottom);
// process all elements of the list
......@@ -1050,7 +1050,7 @@ void RegionBand::Intersect(const RegionBand& rSource)
while ( pBand )
{
// insert bands if the boundaries are not allready in the list
// insert bands if the boundaries are not already in the list
InsertBands( pBand->mnYTop, pBand->mnYBottom );
// process all elements of the list
......@@ -1083,7 +1083,7 @@ void RegionBand::Intersect(const RegionBand& rSource)
pBand = pBand->mpNextBand;
}
// remove all untouched bands if bands allready left
// remove all untouched bands if bands already left
ImplRegionBand* pPrevBand = 0;
pBand = mpFirstBand;
......@@ -1123,7 +1123,7 @@ bool RegionBand::Exclude(const RegionBand& rSource)
while ( pBand )
{
// insert bands if the boundaries are not allready in the list
// insert bands if the boundaries are not already in the list
InsertBands( pBand->mnYTop, pBand->mnYBottom );
// process all elements of the list
......@@ -1177,7 +1177,7 @@ void RegionBand::XOr(const RegionBand& rSource)
while ( pBand )
{
// insert bands if the boundaries are not allready in the list
// insert bands if the boundaries are not already in the list
InsertBands( pBand->mnYTop, pBand->mnYBottom );
// process all elements of the list
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment