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

New commits:
commit a44e066c9e587dc87fd2563f3e9454e9e92dcde7
Author:     Miklos Vajna <vmik...@collabora.com>
AuthorDate: Tue Apr 2 08:16:27 2024 +0200
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Tue Apr 2 10:28:27 2024 +0200

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

diff --git a/include/svx/xtable.hxx b/include/svx/xtable.hxx
index ca2c0518b876..43ea9820d5a1 100644
--- a/include/svx/xtable.hxx
+++ b/include/svx/xtable.hxx
@@ -56,7 +56,7 @@ public:
 class SVXCORE_DLLPUBLIC XLineEndEntry final : public XPropertyEntry
 {
 private:
-    basegfx::B2DPolyPolygon aB2DPolyPolygon;
+    basegfx::B2DPolyPolygon m_aB2DPolyPolygon;
 
 public:
     XLineEndEntry(basegfx::B2DPolyPolygon aB2DPolyPolygon, const OUString& 
rName);
@@ -64,7 +64,7 @@ public:
 
     const basegfx::B2DPolyPolygon& GetLineEnd() const
     {
-        return aB2DPolyPolygon;
+        return m_aB2DPolyPolygon;
     }
 };
 
diff --git a/svx/source/xoutdev/xtable.cxx b/svx/source/xoutdev/xtable.cxx
index 715d2ff3d083..e640c18b64e9 100644
--- a/svx/source/xoutdev/xtable.cxx
+++ b/svx/source/xoutdev/xtable.cxx
@@ -38,13 +38,13 @@ XColorEntry::XColorEntry(const Color& rColor, const 
OUString& rName)
 
 XLineEndEntry::XLineEndEntry(basegfx::B2DPolyPolygon _aB2DPolyPolygon, const 
OUString& rName)
 :   XPropertyEntry(rName),
-    aB2DPolyPolygon(std::move(_aB2DPolyPolygon))
+    m_aB2DPolyPolygon(std::move(_aB2DPolyPolygon))
 {
 }
 
 XLineEndEntry::XLineEndEntry(const XLineEndEntry& rOther)
 :   XPropertyEntry(rOther),
-    aB2DPolyPolygon(rOther.aB2DPolyPolygon)
+    m_aB2DPolyPolygon(rOther.m_aB2DPolyPolygon)
 {
 }
 

Reply via email to