include/svx/xtable.hxx        |    4 ++--
 svx/source/xoutdev/xtable.cxx |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3930366328042b0fe8d63bc8a2eb827fd7e230a6
Author:     Miklos Vajna <[email protected]>
AuthorDate: Mon Dec 18 08:18:29 2023 +0100
Commit:     Miklos Vajna <[email protected]>
CommitDate: Mon Dec 18 12:51:41 2023 +0100

    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 <[email protected]>
    Tested-by: Jenkins

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;
     }
 };
 
diff --git a/svx/source/xoutdev/xtable.cxx b/svx/source/xoutdev/xtable.cxx
index 9818fd1939f4..87850e6f25b8 100644
--- a/svx/source/xoutdev/xtable.cxx
+++ b/svx/source/xoutdev/xtable.cxx
@@ -32,7 +32,7 @@ using namespace com::sun::star;
 
 XColorEntry::XColorEntry(const Color& rColor, const OUString& rName)
 :   XPropertyEntry(rName),
-    aColor(rColor)
+    m_aColor(rColor)
 {
 }
 

Reply via email to