summaryrefslogtreecommitdiff
path: root/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 10:40:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 19:21:28 +0100
commitb4cb9bc2b80e316ff615e14c4a5ae2a1ab492f91 (patch)
tree3bde5c701091b9ec1dd02ffbeed5ab621514a247 /include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
parentdf3e1b7bbd126ed114015070bf68db30fbe9516e (diff)
Revert "loplugin:constfields in svx"
This reverts commit 1a6397030381a45f27ab7a2a02e6e6d0f9987c84. Change-Id: Iaa706bb4ea3144ef57ab359b982400abc589b97e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90454 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 35079a47e4c7..80059b791ba1 100644
--- a/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
+++ b/include/svx/sdr/overlay/overlayanimatedbitmapex.hxx
@@ -31,21 +31,21 @@ namespace sdr
class SVXCORE_DLLPUBLIC OverlayAnimatedBitmapEx final : public OverlayObjectWithBasePosition
{
// the Bitmaps
- BitmapEx const maBitmapEx1;
- BitmapEx const maBitmapEx2;
+ BitmapEx maBitmapEx1;
+ BitmapEx maBitmapEx2;
// position of the basePosition inside the Bitmaps, in pixels
- sal_uInt16 const mnCenterX1;
- sal_uInt16 const mnCenterY1;
- sal_uInt16 const mnCenterX2;
- sal_uInt16 const mnCenterY2;
+ sal_uInt16 mnCenterX1;
+ sal_uInt16 mnCenterY1;
+ sal_uInt16 mnCenterX2;
+ sal_uInt16 mnCenterY2;
// #i53216# added CursorBlinkTime (in ms)
- sal_uInt32 const mnBlinkTime;
+ sal_uInt32 mnBlinkTime;
// optional shear and rotation
- double const mfShearX;
- double const mfRotation;
+ double mfShearX;
+ double mfRotation;
// Flag to remember which state to draw. Inited with false (0)
bool mbOverlayState : 1;