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 ) ...@@ -670,7 +670,7 @@ bool Region::Intersect( const Rectangle& rRect )
const long nRight(std::max(rRect.Left(), rRect.Right())); const long nRight(std::max(rRect.Left(), rRect.Right()));
const long nBottom(std::max(rRect.Top(), rRect.Bottom())); 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); pNew->InsertBands(nTop, nBottom);
// process intersect // process intersect
...@@ -751,7 +751,7 @@ bool Region::Exclude( const Rectangle& rRect ) ...@@ -751,7 +751,7 @@ bool Region::Exclude( const Rectangle& rRect )
const long nRight(std::max(rRect.Left(), rRect.Right())); const long nRight(std::max(rRect.Left(), rRect.Right()));
const long nBottom(std::max(rRect.Top(), rRect.Bottom())); 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); pNew->InsertBands(nTop, nBottom);
// process exclude // process exclude
...@@ -836,7 +836,7 @@ bool Region::XOr( const Rectangle& rRect ) ...@@ -836,7 +836,7 @@ bool Region::XOr( const Rectangle& rRect )
const long nRight(std::max(rRect.Left(), rRect.Right())); const long nRight(std::max(rRect.Left(), rRect.Right()));
const long nBottom(std::max(rRect.Top(), rRect.Bottom())); 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); pNew->InsertBands(nTop, nBottom);
// process xor // process xor
......
...@@ -936,7 +936,7 @@ void RegionBand::Union(const RegionBand& rSource) ...@@ -936,7 +936,7 @@ void RegionBand::Union(const RegionBand& rSource)
while ( pBand ) 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); InsertBands(pBand->mnYTop, pBand->mnYBottom);
// process all elements of the list // process all elements of the list
...@@ -1050,7 +1050,7 @@ void RegionBand::Intersect(const RegionBand& rSource) ...@@ -1050,7 +1050,7 @@ void RegionBand::Intersect(const RegionBand& rSource)
while ( pBand ) 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 ); InsertBands( pBand->mnYTop, pBand->mnYBottom );
// process all elements of the list // process all elements of the list
...@@ -1083,7 +1083,7 @@ void RegionBand::Intersect(const RegionBand& rSource) ...@@ -1083,7 +1083,7 @@ void RegionBand::Intersect(const RegionBand& rSource)
pBand = pBand->mpNextBand; pBand = pBand->mpNextBand;
} }
// remove all untouched bands if bands allready left // remove all untouched bands if bands already left
ImplRegionBand* pPrevBand = 0; ImplRegionBand* pPrevBand = 0;
pBand = mpFirstBand; pBand = mpFirstBand;
...@@ -1123,7 +1123,7 @@ bool RegionBand::Exclude(const RegionBand& rSource) ...@@ -1123,7 +1123,7 @@ bool RegionBand::Exclude(const RegionBand& rSource)
while ( pBand ) 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 ); InsertBands( pBand->mnYTop, pBand->mnYBottom );
// process all elements of the list // process all elements of the list
...@@ -1177,7 +1177,7 @@ void RegionBand::XOr(const RegionBand& rSource) ...@@ -1177,7 +1177,7 @@ void RegionBand::XOr(const RegionBand& rSource)
while ( pBand ) 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 ); InsertBands( pBand->mnYTop, pBand->mnYBottom );
// process all elements of the list // 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