writerfilter/source/ooxml/OOXMLPropertySet.cxx |    6 +++---
 writerfilter/source/ooxml/OOXMLPropertySet.hxx |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 078f5064dd09e5228f1a54b4f45ae90fc06bd99f
Author:     Miklos Vajna <vmik...@collabora.com>
AuthorDate: Mon Mar 6 08:09:44 2023 +0100
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Mon Mar 6 12:13:30 2023 +0000

    writerfilter: prefix members of OOXMLStarMathValue
    
    See tdf#94879 for motivation. With this, writerfilter/ is done, I think.
    
    Change-Id: Ia2ae5394e41688049b0a639aa5ad922980928cf9
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148293
    Reviewed-by: Miklos Vajna <vmik...@collabora.com>
    Tested-by: Jenkins

diff --git a/writerfilter/source/ooxml/OOXMLPropertySet.cxx 
b/writerfilter/source/ooxml/OOXMLPropertySet.cxx
index e060d2da2d6c..930fa5a7f85b 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySet.cxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySet.cxx
@@ -721,7 +721,7 @@ OOXMLValue * OOXMLShapeValue::clone() const
 
 
 OOXMLStarMathValue::OOXMLStarMathValue( uno::Reference< embed::XEmbeddedObject 
> c )
-: component(std::move(c))
+: m_component(std::move(c))
 {
 }
 
@@ -731,7 +731,7 @@ OOXMLStarMathValue::~OOXMLStarMathValue()
 
 uno::Any OOXMLStarMathValue::getAny() const
 {
-    return uno::Any(component);
+    return uno::Any(m_component);
 }
 
 #ifdef DBG_UTIL
@@ -743,7 +743,7 @@ std::string OOXMLStarMathValue::toString() const
 
 OOXMLValue * OOXMLStarMathValue::clone() const
 {
-    return new OOXMLStarMathValue( component );
+    return new OOXMLStarMathValue( m_component );
 }
 
 /*
diff --git a/writerfilter/source/ooxml/OOXMLPropertySet.hxx 
b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
index 3393050afa23..2c851ab53823 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySet.hxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
@@ -351,7 +351,7 @@ public:
 
 class OOXMLStarMathValue final : public OOXMLValue
 {
-    css::uno::Reference<css::embed::XEmbeddedObject> component;
+    css::uno::Reference<css::embed::XEmbeddedObject> m_component;
 
 public:
     explicit 
OOXMLStarMathValue(css::uno::Reference<css::embed::XEmbeddedObject> component);

Reply via email to