summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2023-03-06 08:09:44 +0100
committerMiklos Vajna <vmiklos@collabora.com>2023-03-06 12:13:30 +0000
commit078f5064dd09e5228f1a54b4f45ae90fc06bd99f (patch)
tree48a3f8431398843d2e326df043bda69142740118
parent3a1f86eb7cc5b3eaaec74501f472dfd0358b463c (diff)
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 <vmiklos@collabora.com> Tested-by: Jenkins
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySet.cxx6
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySet.hxx2
2 files changed, 4 insertions, 4 deletions
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);