diff options
Diffstat (limited to 'include')
-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; } }; |