From dcfd4beb213c551f6ef6ba379651bf303bd9017a Mon Sep 17 00:00:00 2001 From: "Michael T. Whiteley" Date: Wed, 7 Dec 2011 02:33:51 -0800 Subject: childs -> children --- vcl/source/gdi/octree.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vcl/source/gdi/octree.cxx') diff --git a/vcl/source/gdi/octree.cxx b/vcl/source/gdi/octree.cxx index 1fcfdb006d17..844eabbafceb 100644 --- a/vcl/source/gdi/octree.cxx +++ b/vcl/source/gdi/octree.cxx @@ -226,7 +226,7 @@ void Octree::ImplReduce() sal_uLong nRedSum = 0L; sal_uLong nGreenSum = 0L; sal_uLong nBlueSum = 0L; - sal_uLong nChilds = 0L; + sal_uLong nChildren = 0L; for ( i = OCTREE_BITS - 1; i && !pReduce[i]; i-- ) {} @@ -246,7 +246,7 @@ void Octree::ImplReduce() pNodeCache->ImplReleaseNode( pNode->pChild[ i ] ); pNode->pChild[ i ] = NULL; - nChilds++; + nChildren++; } } @@ -254,7 +254,7 @@ void Octree::ImplReduce() pNode->nRed = nRedSum; pNode->nGreen = nGreenSum; pNode->nBlue = nBlueSum; - nLeafCount -= --nChilds; + nLeafCount -= --nChildren; } // ------------------------------------------------------------------------ -- cgit