diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2024-11-04 08:18:14 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2024-11-04 14:31:42 +0100 |
commit | c8606fc09b81d2666095d4cb4d8a813ef0ba1cc2 (patch) | |
tree | 278fadab36a4caac13303299a22c5a55a04beae1 /include/svx | |
parent | 910d67e442953f7da669157fe678f764c9623121 (diff) |
svx: prefix members of E3dCubeObj
See tdf#94879 for motivation.
Change-Id: I0e1dcb44cd46fdf40ae21c264017c8fc9ca96b53
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175980
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/cube3d.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/cube3d.hxx b/include/svx/cube3d.hxx index 7fff9931f642..30995a070f3c 100644 --- a/include/svx/cube3d.hxx +++ b/include/svx/cube3d.hxx @@ -47,11 +47,11 @@ class E3dDefaultAttributes; class SAL_WARN_UNUSED E3dCubeObj final : public E3dCompoundObject { // Parameter - basegfx::B3DPoint aCubePos; - basegfx::B3DVector aCubeSize; + basegfx::B3DPoint m_aCubePos; + basegfx::B3DVector m_aCubeSize; // BOOLeans - bool bPosIsCenter : 1; + bool m_bPosIsCenter : 1; void SetDefaultAttributes(const E3dDefaultAttributes& rDefault); virtual std::unique_ptr<sdr::contact::ViewContact> CreateObjectSpecificViewContact() override; @@ -75,13 +75,13 @@ public: // Set local parameters with geometry recreation void SetCubePos(const basegfx::B3DPoint& rNew); - const basegfx::B3DPoint& GetCubePos() const { return aCubePos; } + const basegfx::B3DPoint& GetCubePos() const { return m_aCubePos; } void SetCubeSize(const basegfx::B3DVector& rNew); - const basegfx::B3DVector& GetCubeSize() const { return aCubeSize; } + const basegfx::B3DVector& GetCubeSize() const { return m_aCubeSize; } void SetPosIsCenter(bool bNew); - bool GetPosIsCenter() const { return bPosIsCenter; } + bool GetPosIsCenter() const { return m_bPosIsCenter; } // TakeObjName...() is for the display in the UI, for example "3 frames selected". virtual OUString TakeObjNameSingul() const override; |