summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/chart/datasourcecontext.cxx2
-rw-r--r--oox/source/drawingml/shape.cxx8
2 files changed, 5 insertions, 5 deletions
diff --git a/oox/source/drawingml/chart/datasourcecontext.cxx b/oox/source/drawingml/chart/datasourcecontext.cxx
index f54ba842eaa1..2d0d6e19fbda 100644
--- a/oox/source/drawingml/chart/datasourcecontext.cxx
+++ b/oox/source/drawingml/chart/datasourcecontext.cxx
@@ -155,7 +155,7 @@ SvNumberFormatter* DoubleSequenceContext::getNumberFormatter()
if( mpNumberFormatter == nullptr )
{
uno::Reference<uno::XComponentContext> rContext =
- this->getFilter().getComponentContext();
+ getFilter().getComponentContext();
mpNumberFormatter.reset(
new SvNumberFormatter(rContext, LANGUAGE_DONTKNOW) );
}
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index 38b946a5e792..021178a9a8e4 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -770,7 +770,7 @@ Reference< XShape > const & Shape::createAndInsert(
}
//If the text box has links then save the link information so that
//it can be accessed in DomainMapper_Impl.cxx while chaining the text frames.
- if (this->isLinkedTxbx())
+ if (isLinkedTxbx())
{
uno::Reference<beans::XPropertySet> propertySet (mxShape, uno::UNO_QUERY);
uno::Sequence<beans::PropertyValue> aGrabBag;
@@ -778,11 +778,11 @@ Reference< XShape > const & Shape::createAndInsert(
sal_Int32 length = aGrabBag.getLength();
aGrabBag.realloc( length + 3 );
aGrabBag[length].Name = "TxbxHasLink";
- aGrabBag[length].Value <<= this->isLinkedTxbx();
+ aGrabBag[length].Value <<= isLinkedTxbx();
aGrabBag[length + 1 ].Name = "Txbx-Id";
- aGrabBag[length + 1 ].Value <<= this->getLinkedTxbxAttributes().id;
+ aGrabBag[length + 1 ].Value <<= getLinkedTxbxAttributes().id;
aGrabBag[length + 2 ].Name = "Txbx-Seq";
- aGrabBag[length + 2 ].Value <<= this->getLinkedTxbxAttributes().seq;
+ aGrabBag[length + 2 ].Value <<= getLinkedTxbxAttributes().seq;
propertySet->setPropertyValue("FrameInteropGrabBag",uno::makeAny(aGrabBag));
}