diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2024-01-22 08:09:36 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2024-01-22 09:13:38 +0100 |
commit | 1a4e52c0d985138d483af288c547f8cea6c96667 (patch) | |
tree | 2b7f1692f3a17755aed98449ce177d350f0a847d /svx | |
parent | 4b68824d18316762a6afc35d355221e0228aebf8 (diff) |
svx: prefix members of XDash
See tdf#94879 for motivation.
Change-Id: I78a3b52001cc61728fe568623acf13b86f43c449
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162361
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/xoutdev/xattr.cxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/svx/source/xoutdev/xattr.cxx b/svx/source/xoutdev/xattr.cxx index e712be7632f2..68b40d539cd0 100644 --- a/svx/source/xoutdev/xattr.cxx +++ b/svx/source/xoutdev/xattr.cxx @@ -487,23 +487,23 @@ sal_uInt16 XLineStyleItem::GetValueCount() const XDash::XDash(css::drawing::DashStyle eTheDash, sal_uInt16 nTheDots, double nTheDotLen, sal_uInt16 nTheDashes, double nTheDashLen, double nTheDistance) : - eDash(eTheDash), - nDots(nTheDots), - nDashes(nTheDashes), - nDotLen(nTheDotLen), - nDashLen(nTheDashLen), - nDistance(nTheDistance) + m_eDash(eTheDash), + m_nDots(nTheDots), + m_nDashes(nTheDashes), + m_nDotLen(nTheDotLen), + m_nDashLen(nTheDashLen), + m_nDistance(nTheDistance) { } bool XDash::operator==(const XDash& rDash) const { - return ( eDash == rDash.eDash && - nDots == rDash.nDots && - nDotLen == rDash.nDotLen && - nDashes == rDash.nDashes && - nDashLen == rDash.nDashLen && - nDistance == rDash.nDistance ); + return ( m_eDash == rDash.m_eDash && + m_nDots == rDash.m_nDots && + m_nDotLen == rDash.m_nDotLen && + m_nDashes == rDash.m_nDashes && + m_nDashLen == rDash.m_nDashLen && + m_nDistance == rDash.m_nDistance ); } // XDash is translated into an array of doubles which describe the lengths of the |