backport r837891
svn path=/branches/KDE/4.1/kdebase/workspace/; revision=855126
This commit is contained in:
parent
841a8f984c
commit
335db5f3df
1 changed files with 2 additions and 2 deletions
|
@ -543,7 +543,7 @@ WindowQuadList WindowQuadList::splitAtX( double x ) const
|
||||||
{
|
{
|
||||||
if( quad[ i ].x() < x )
|
if( quad[ i ].x() < x )
|
||||||
wholeright = false;
|
wholeright = false;
|
||||||
if( quad[ i ].x() >= x )
|
if( quad[ i ].x() > x )
|
||||||
wholeleft = false;
|
wholeleft = false;
|
||||||
}
|
}
|
||||||
if( wholeleft || wholeright ) // is whole in one split part
|
if( wholeleft || wholeright ) // is whole in one split part
|
||||||
|
@ -574,7 +574,7 @@ WindowQuadList WindowQuadList::splitAtY( double y ) const
|
||||||
{
|
{
|
||||||
if( quad[ i ].y() < y )
|
if( quad[ i ].y() < y )
|
||||||
wholebottom = false;
|
wholebottom = false;
|
||||||
if( quad[ i ].y() >= y )
|
if( quad[ i ].y() > y )
|
||||||
wholetop = false;
|
wholetop = false;
|
||||||
}
|
}
|
||||||
if( wholetop || wholebottom ) // is whole in one split part
|
if( wholetop || wholebottom ) // is whole in one split part
|
||||||
|
|
Loading…
Reference in a new issue