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

New commits:
commit 4259b451c26eec782eb15c7603f6fbb06fc3787e
Author:     Miklos Vajna <vmik...@collabora.com>
AuthorDate: Mon Feb 5 08:09:53 2024 +0100
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Mon Feb 5 11:50:50 2024 +0100

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

diff --git a/include/svx/xtable.hxx b/include/svx/xtable.hxx
index eb015497a9e4..273cc918210e 100644
--- a/include/svx/xtable.hxx
+++ b/include/svx/xtable.hxx
@@ -71,7 +71,7 @@ public:
 class SVXCORE_DLLPUBLIC XDashEntry final : public XPropertyEntry
 {
 private:
-    XDash   aDash;
+    XDash   m_aDash;
 
 public:
     XDashEntry(const XDash& rDash, const OUString& rName);
@@ -79,7 +79,7 @@ public:
 
     const XDash& GetDash() const
     {
-        return aDash;
+        return m_aDash;
     }
 };
 
diff --git a/svx/source/xoutdev/xtable.cxx b/svx/source/xoutdev/xtable.cxx
index 87850e6f25b8..26316acf9ad8 100644
--- a/svx/source/xoutdev/xtable.cxx
+++ b/svx/source/xoutdev/xtable.cxx
@@ -50,13 +50,13 @@ XLineEndEntry::XLineEndEntry(const XLineEndEntry& rOther)
 
 XDashEntry::XDashEntry(const XDash& rDash, const OUString& rName)
 :   XPropertyEntry(rName),
-    aDash(rDash)
+    m_aDash(rDash)
 {
 }
 
 XDashEntry::XDashEntry(const XDashEntry& rOther)
 :   XPropertyEntry(rOther),
-aDash(rOther.aDash)
+m_aDash(rOther.m_aDash)
 {
 }
 

Reply via email to