summaryrefslogtreecommitdiff
path: root/svx/source/sdr
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-02-20 11:03:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-02-21 06:04:19 +0100
commit924c0e34fdc36cd44100dafc2c68656ce32374e6 (patch)
tree05548e06d476b1244abb3ef83013514c7f991b3e /svx/source/sdr
parentfd20935bb819cb24e71f4f91b97149c35bc5987d (diff)
loplugin:changetoolsgen in svx
and fix the regex in the plugin for matching += operator Change-Id: I26b3e3fac1d4ef3e756cc9431b983b5f27ee76d6 Reviewed-on: https://gerrit.libreoffice.org/50037 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/sdr')
-rw-r--r--svx/source/sdr/overlay/overlaymanagerbuffered.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/sdr/overlay/overlaymanagerbuffered.cxx b/svx/source/sdr/overlay/overlaymanagerbuffered.cxx
index ab2e8216f139..d26367a646fc 100644
--- a/svx/source/sdr/overlay/overlaymanagerbuffered.cxx
+++ b/svx/source/sdr/overlay/overlaymanagerbuffered.cxx
@@ -265,22 +265,22 @@ namespace sdr
// maximum size indirectly shall be limited to getOutputDevice().GetOutputSizePixel()
if(aRegionRectanglePixel.Left() < 0)
{
- aRegionRectanglePixel.Left() = 0;
+ aRegionRectanglePixel.SetLeft( 0 );
}
if(aRegionRectanglePixel.Top() < 0)
{
- aRegionRectanglePixel.Top() = 0;
+ aRegionRectanglePixel.SetTop( 0 );
}
if(aRegionRectanglePixel.Right() > aDestinationSizePixel.getWidth())
{
- aRegionRectanglePixel.Right() = aDestinationSizePixel.getWidth();
+ aRegionRectanglePixel.SetRight( aDestinationSizePixel.getWidth() );
}
if(aRegionRectanglePixel.Bottom() > aDestinationSizePixel.getHeight())
{
- aRegionRectanglePixel.Bottom() = aDestinationSizePixel.getHeight();
+ aRegionRectanglePixel.SetBottom( aDestinationSizePixel.getHeight() );
}
// get sizes