[Libreoffice-commits] core.git: vcl/source
Julien Nabet
serval2412 at yahoo.fr
Sun Dec 22 11:24:56 PST 2013
vcl/source/gdi/region.cxx | 6 +++---
vcl/source/gdi/regionband.cxx | 10 +++++-----
2 files changed, 8 insertions(+), 8 deletions(-)
New commits:
commit e2e5689a59c7ebdbdc37e54453b06568d985bf8e
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Sun Dec 22 20:22:22 2013 +0100
Typos
Change-Id: I101d2c40bc08130f719f52494d95ab60d1d97e0f
diff --git a/vcl/source/gdi/region.cxx b/vcl/source/gdi/region.cxx
index 6b16ac1..3c1fee8 100644
--- a/vcl/source/gdi/region.cxx
+++ b/vcl/source/gdi/region.cxx
@@ -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
diff --git a/vcl/source/gdi/regionband.cxx b/vcl/source/gdi/regionband.cxx
index 1dbfd34..9e07a12 100644
--- a/vcl/source/gdi/regionband.cxx
+++ b/vcl/source/gdi/regionband.cxx
@@ -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
More information about the Libreoffice-commits
mailing list