diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2024-11-19 14:26:51 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2024-11-19 15:32:51 +0100 |
commit | b0eceb839a8ddb70412d8cc5737eb3bd2b90b2c8 (patch) | |
tree | d5f495517135fe4ba6af69ea6bf9464a7932d59f /include/svx/e3ditem.hxx | |
parent | 1163713bca932e96c1634a54310f9f2b45b038f2 (diff) |
svx: prefix members of SvxB3DVectorItem
See tdf#94879 for motivation.
Change-Id: I74c53028d9966ca4059c7a145b3fb0d914d8ae77
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176770
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include/svx/e3ditem.hxx')
-rw-r--r-- | include/svx/e3ditem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/e3ditem.hxx b/include/svx/e3ditem.hxx index bad0e95c89f5..7302c93d97c6 100644 --- a/include/svx/e3ditem.hxx +++ b/include/svx/e3ditem.hxx @@ -27,7 +27,7 @@ class SAL_WARN_UNUSED UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) SvxB3DVectorItem final : public SfxPoolItem { - basegfx::B3DVector aVal; + basegfx::B3DVector m_aVal; public: SvxB3DVectorItem( TypedWhichId<SvxB3DVectorItem> nWhich, const basegfx::B3DVector& rVal ); @@ -40,7 +40,7 @@ public: virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override; virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override; - const basegfx::B3DVector& GetValue() const { return aVal; } + const basegfx::B3DVector& GetValue() const { return m_aVal; } void dumpAsXml(xmlTextWriterPtr pWriter) const override; }; |