summaryrefslogtreecommitdiff
path: root/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-01 11:40:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-08 08:03:03 +0200
commit1a6397030381a45f27ab7a2a02e6e6d0f9987c84 (patch)
tree6e342854037b3b845215af09f36407495550254d /include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
parent781544497a0913037bba160a4cf6b643e5ca1d1a (diff)
loplugin:constfields in svx
Change-Id: I643e8686e015ca85dd96221f1c93038f4fddf27b Reviewed-on: https://gerrit.libreoffice.org/61182 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/sdr/overlay/overlayanimatedbitmapex.hxx')
-rw-r--r--include/svx/sdr/overlay/overlayanimatedbitmapex.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx b/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
index e906b0126328..426b0900be22 100644
--- a/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
+++ b/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
@@ -31,21 +31,21 @@ namespace sdr
class SVX_DLLPUBLIC OverlayAnimatedBitmapEx final : public OverlayObjectWithBasePosition
{
// the Bitmaps
- BitmapEx maBitmapEx1;
- BitmapEx maBitmapEx2;
+ BitmapEx const maBitmapEx1;
+ BitmapEx const maBitmapEx2;
// position of the basePosition inside the Bitmaps, in pixels
- sal_uInt16 mnCenterX1;
- sal_uInt16 mnCenterY1;
- sal_uInt16 mnCenterX2;
- sal_uInt16 mnCenterY2;
+ sal_uInt16 const mnCenterX1;
+ sal_uInt16 const mnCenterY1;
+ sal_uInt16 const mnCenterX2;
+ sal_uInt16 const mnCenterY2;
// #i53216# added CursorBlinkTime (in ms)
- sal_uInt32 mnBlinkTime;
+ sal_uInt32 const mnBlinkTime;
// optional shear and rotation
- double mfShearX;
- double mfRotation;
+ double const mfShearX;
+ double const mfRotation;
// Flag to remember which state to draw. Inited with false (0)
bool mbOverlayState : 1;