diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-07-17 08:09:53 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-07-17 11:20:22 +0200 |
commit | 107ab712725e92fc527b54e91f317f932b78146a (patch) | |
tree | 9df162c1abb3567c3e1d1be007d526ef92292ccb /include/svx/sdasitm.hxx | |
parent | d22ab7b444a4e16dc2bd1f7d15fa36a848eaaaed (diff) |
svx: prefix members of SdrCustomShapeGeometryItem and SdrFormatter
See tdf#94879 for motivation.
Change-Id: If7ca1e0117943f82c9ea46d6a6eb9ba9f67b1b09
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154507
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include/svx/sdasitm.hxx')
-rw-r--r-- | include/svx/sdasitm.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/sdasitm.hxx b/include/svx/sdasitm.hxx index ee1c05ebc634..e53e9c3604a2 100644 --- a/include/svx/sdasitm.hxx +++ b/include/svx/sdasitm.hxx @@ -43,16 +43,16 @@ private: typedef std::unordered_map <PropertyPair, sal_Int32, PropertyPairHash> PropertyPairHashMap; typedef std::unordered_map<OUString, sal_Int32> PropertyHashMap; - PropertyHashMap aPropHashMap; - PropertyPairHashMap aPropPairHashMap; + PropertyHashMap m_aPropHashMap; + PropertyPairHashMap m_aPropPairHashMap; - css::uno::Sequence< css::beans::PropertyValue > aPropSeq; + css::uno::Sequence< css::beans::PropertyValue > m_aPropSeq; // For fast comparisons keep a hash of the content, computed on demand // (unusable state is if anyToHash() returns no hash). enum HashState { Unknown, Valid, Unusable }; - mutable HashState aHashState = HashState::Unknown; - mutable size_t aHash = 0xdeadbeef; + mutable HashState m_aHashState = HashState::Unknown; + mutable size_t m_aHash = 0xdeadbeef; void SetPropSeq( const css::uno::Sequence< css::beans::PropertyValue >& rPropSeq ); inline void UpdateHash() const; |