summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-09 23:16:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-10 07:43:42 +0200
commitd55320b95b40770986a7bce9ab96fbd570dd8cb7 (patch)
treeddbda2967793f014a4076063d9f13733c5e82368 /oox
parentf9569785dd513b9b2f1d7c8c687fed285b0ad280 (diff)
More loplugin:redundantpointerops
...same as 7d361e96c9ea822790db21806e9fc05279423833 "loplugin:redundantpointerops" (that were presumably missed by that commit because I only pulled 682fdbf1312cf6ca70fe209bf4d7051dad8f5008 "loplugin:redundantpointerops check other pointer types" halfway through my local build) Change-Id: I1497e4fca2046cbcd107bb2ac5ed6f41bd68de98 Reviewed-on: https://gerrit.libreoffice.org/80569 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/table/tablecontext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/table/tablecontext.cxx b/oox/source/drawingml/table/tablecontext.cxx
index c3291b07ba20..3371e105f691 100644
--- a/oox/source/drawingml/table/tablecontext.cxx
+++ b/oox/source/drawingml/table/tablecontext.cxx
@@ -33,7 +33,7 @@ namespace oox { namespace drawingml { namespace table {
TableContext::TableContext( ContextHandler2Helper const & rParent, const ShapePtr& pShapePtr )
: ShapeContext( rParent, ShapePtr(), pShapePtr )
-, mrTableProperties( *pShapePtr->getTableProperties().get() )
+, mrTableProperties( *pShapePtr->getTableProperties() )
{
pShapePtr->setTableType();
}