diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-08 09:27:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-08 10:01:05 +0100 |
commit | 587ac01f97d3fd63638bbb1e4b165b49140bfc90 (patch) | |
tree | 020c6d10d04ca8cc3466315e23ad6100a689dca6 /include | |
parent | bd824be5371d5e4d6e49b72ccf01897ba301c55e (diff) |
loplugin:indentation in basctl..bridges
Change-Id: Ie4e27466c4258c6f774a3ebb82ec3a88c28fd753
Reviewed-on: https://gerrit.libreoffice.org/67525
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/basegfx/utils/rectcliptools.hxx | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/include/basegfx/utils/rectcliptools.hxx b/include/basegfx/utils/rectcliptools.hxx index 9df75ef91bca..f3e4b6b19a62 100644 --- a/include/basegfx/utils/rectcliptools.hxx +++ b/include/basegfx/utils/rectcliptools.hxx @@ -49,10 +49,11 @@ namespace basegfx const Rect& rR ) { // maxY | minY | maxX | minX - sal_uInt32 clip = (rP.getX() < rR.getMinX()) << 0; - clip |= (rP.getX() > rR.getMaxX()) << 1; - clip |= (rP.getY() < rR.getMinY()) << 2; - clip |= (rP.getY() > rR.getMaxY()) << 3; + sal_uInt32 clip; + clip = (rP.getX() < rR.getMinX()) << 0; + clip |= (rP.getX() > rR.getMaxX()) << 1; + clip |= (rP.getY() < rR.getMinY()) << 2; + clip |= (rP.getY() > rR.getMaxY()) << 3; return clip; } @@ -62,10 +63,11 @@ namespace basegfx const B2IBox& rB ) { // maxY | minY | maxX | minX - sal_uInt32 clip = (rP.getX() < rB.getMinX()) << 0; - clip |= (rP.getX() >= rB.getMaxX()) << 1; - clip |= (rP.getY() < rB.getMinY()) << 2; - clip |= (rP.getY() >= rB.getMaxY()) << 3; + sal_uInt32 clip; + clip = (rP.getX() < rB.getMinX()) << 0; + clip |= (rP.getX() >= rB.getMaxX()) << 1; + clip |= (rP.getY() < rB.getMinY()) << 2; + clip |= (rP.getY() >= rB.getMaxY()) << 3; return clip; } |