diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-12-18 08:18:29 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-12-18 12:51:41 +0100 |
commit | 3930366328042b0fe8d63bc8a2eb827fd7e230a6 (patch) | |
tree | 3e878e57659ae6b142a0889e62c87ccde5d4728e /include/svx/xtable.hxx | |
parent | 4ae397a2a63141c54ebfa20c37c15a128c3bc663 (diff) |
svx: prefix members of XColorEntry
See tdf#94879 for motivation.
Change-Id: I5f666424a2f9cd2206f37b4440d54452e339e3e1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160891
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include/svx/xtable.hxx')
-rw-r--r-- | include/svx/xtable.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/xtable.hxx b/include/svx/xtable.hxx index e84f459511e2..eb015497a9e4 100644 --- a/include/svx/xtable.hxx +++ b/include/svx/xtable.hxx @@ -42,14 +42,14 @@ class SVXCORE_DLLPUBLIC XColorEntry final : public XPropertyEntry { private: - Color aColor; + Color m_aColor; public: XColorEntry(const Color& rColor, const OUString& rName); const Color& GetColor() const { - return aColor; + return m_aColor; } }; |