summaryrefslogtreecommitdiff
path: root/include/svx/xtable.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2024-03-04 08:23:53 +0100
committerMiklos Vajna <vmiklos@collabora.com>2024-03-04 18:49:47 +0100
commit3372d5c37e07a9862fadc0041587e30759ad0379 (patch)
tree576ba27854793969e9248b713439ce99ceac8f97 /include/svx/xtable.hxx
parent5d529e6290a26dcf44a683b252921b2015fb5719 (diff)
svx: prefix members of XGradientEntry
See tdf#94879 for motivation. Change-Id: Ib00e0ea61ad421eb1d02d973ab8dc8c79b006a64 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164326 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'include/svx/xtable.hxx')
-rw-r--r--include/svx/xtable.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/xtable.hxx b/include/svx/xtable.hxx
index 273cc918210e..15775d01ef2a 100644
--- a/include/svx/xtable.hxx
+++ b/include/svx/xtable.hxx
@@ -101,7 +101,7 @@ public:
class SVXCORE_DLLPUBLIC XGradientEntry final : public XPropertyEntry
{
private:
- basegfx::BGradient aGradient;
+ basegfx::BGradient m_aGradient;
public:
XGradientEntry(const basegfx::BGradient& rGradient, const OUString& rName);
@@ -109,7 +109,7 @@ public:
const basegfx::BGradient& GetGradient() const
{
- return aGradient;
+ return m_aGradient;
}
};