diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2024-03-11 08:41:15 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2024-03-11 14:03:30 +0100 |
commit | da6a23840d44c40da3989e7c2372b2b6d9ae95b5 (patch) | |
tree | 4b7b1b1f5380a6f4c9b5bfe8680ce1b6820a08e7 /svx | |
parent | 2995a0e0785911322c9d57e98b925073ff6cb6bd (diff) |
svx: prefix members of XHatch
See tdf#94879 for motivation.
Change-Id: I65f69d6fb334b0d376a304cd1bc1437fd116c9a8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164643
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/xoutdev/xattr.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/xoutdev/xattr.cxx b/svx/source/xoutdev/xattr.cxx index 5db227e9fca7..22f8f62bbeaa 100644 --- a/svx/source/xoutdev/xattr.cxx +++ b/svx/source/xoutdev/xattr.cxx @@ -2649,19 +2649,19 @@ boost::property_tree::ptree XFillFloatTransparenceItem::dumpAsJSON() const XHatch::XHatch(const Color& rCol, css::drawing::HatchStyle eTheStyle, tools::Long nTheDistance, Degree10 nTheAngle) : - eStyle(eTheStyle), - aColor(rCol), - nDistance(nTheDistance), - nAngle(nTheAngle) + m_eStyle(eTheStyle), + m_aColor(rCol), + m_nDistance(nTheDistance), + m_nAngle(nTheAngle) { } bool XHatch::operator==(const XHatch& rHatch) const { - return ( eStyle == rHatch.eStyle && - aColor == rHatch.aColor && - nDistance == rHatch.nDistance && - nAngle == rHatch.nAngle ); + return ( m_eStyle == rHatch.m_eStyle && + m_aColor == rHatch.m_aColor && + m_nDistance == rHatch.m_nDistance && + m_nAngle == rHatch.m_nAngle ); } |