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

New commits:
commit 4a7bd4798f3f79c813e940504463c0af7bf9e985
Author:     Miklos Vajna <vmik...@collabora.com>
AuthorDate: Mon Mar 25 08:37:27 2024 +0100
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Mon Mar 25 10:28:10 2024 +0100

    svx: prefix members of XHatchEntry
    
    See tdf#94879 for motivation.
    
    Change-Id: I1edd4bf9c3b7369898f500f9eb5c483be133ed67
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165267
    Reviewed-by: Miklos Vajna <vmik...@collabora.com>
    Tested-by: Jenkins

diff --git a/include/svx/xtable.hxx b/include/svx/xtable.hxx
index 15775d01ef2a..ca2c0518b876 100644
--- a/include/svx/xtable.hxx
+++ b/include/svx/xtable.hxx
@@ -86,7 +86,7 @@ public:
 class SVXCORE_DLLPUBLIC XHatchEntry final : public XPropertyEntry
 {
 private:
-    XHatch  aHatch;
+    XHatch  m_aHatch;
 
 public:
     XHatchEntry(const XHatch& rHatch, const OUString& rName);
@@ -94,7 +94,7 @@ public:
 
     const XHatch& GetHatch() const
     {
-        return aHatch;
+        return m_aHatch;
     }
 };
 
diff --git a/svx/source/xoutdev/xtable.cxx b/svx/source/xoutdev/xtable.cxx
index fea229ec74dc..715d2ff3d083 100644
--- a/svx/source/xoutdev/xtable.cxx
+++ b/svx/source/xoutdev/xtable.cxx
@@ -62,13 +62,13 @@ m_aDash(rOther.m_aDash)
 
 XHatchEntry::XHatchEntry(const XHatch& rHatch, const OUString& rName)
 :   XPropertyEntry(rName),
-    aHatch(rHatch)
+    m_aHatch(rHatch)
 {
 }
 
 XHatchEntry::XHatchEntry(const XHatchEntry& rOther)
 :   XPropertyEntry(rOther),
-    aHatch(rOther.aHatch)
+    m_aHatch(rOther.m_aHatch)
 {
 }
 

Reply via email to