diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2024-06-10 08:41:56 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2024-06-10 09:54:14 +0200 |
commit | fd7418c1f75e855a19078c6288a024b1b465f614 (patch) | |
tree | 172e7b12deadafc4f192649c1c184ac80322353a /include | |
parent | bf02c5fa586d2ff7dbfac37d3ea0a07675efc15e (diff) |
svx: prefix members of SdrGrafObj
See tdf#94879 for motivation.
Change-Id: Icc587c31582fb5fdfbdfe375005b96ea219bf4a4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168597
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdograf.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/svx/svdograf.hxx b/include/svx/svdograf.hxx index ec2c94ab3f45..88296f4a2629 100644 --- a/include/svx/svdograf.hxx +++ b/include/svx/svdograf.hxx @@ -79,14 +79,14 @@ private: SAL_DLLPRIVATE virtual std::unique_ptr<sdr::properties::BaseProperties> CreateObjectSpecificProperties() override; SAL_DLLPRIVATE void ImpSetAttrToGrafInfo(); // Copy values from the pool - GraphicAttr aGrafInfo; + GraphicAttr m_aGrafInfo; - OUString aFileName; // If it's a Link, the filename can be found in here - OUString aFilterName; + OUString m_aFileName; // If it's a Link, the filename can be found in here + OUString m_aFilterName; std::unique_ptr<GraphicObject> mpGraphicObject; // In order to speed up output of bitmaps, especially rotated ones std::unique_ptr<GraphicObject> mpReplacementGraphicObject; - SdrGraphicLink* pGraphicLink; // And here a pointer for linked graphics - bool bMirrored:1; // True: the graphic is horizontal, which means it's mirrored along the y-axis + SdrGraphicLink* m_pGraphicLink; // And here a pointer for linked graphics + bool m_bMirrored:1; // True: the graphic is horizontal, which means it's mirrored along the y-axis // Flag for allowing text animation. Default is true. bool mbGrafAnimationAllowed:1; @@ -157,7 +157,7 @@ public: void ReleaseGraphicLink(); bool IsLinkedGraphic() const; - const OUString& GetFileName() const { return aFileName;} + const OUString& GetFileName() const { return m_aFileName;} void StartAnimation(); @@ -192,7 +192,7 @@ public: SAL_DLLPRIVATE virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override; - bool IsMirrored() const { return bMirrored;} + bool IsMirrored() const { return m_bMirrored;} SAL_DLLPRIVATE void SetMirrored( bool _bMirrored ); virtual bool shouldKeepAspectRatio() const override { return true; } |