summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-14 20:11:07 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-15 09:04:30 +0200
commitc77e30cbc0e7fb56593dac345291fd33998fbaf0 (patch)
tree2f8c5114f5176ea38ca2623b39734fbaf2784b99 /sc/source/filter/oox
parentd72f68e91b595d1a8120f39b80483c3f06838099 (diff)
replace ".get->" with "->"
Change-Id: I327a6fda1fe0170da33e06b735f09a39421c8a58 Reviewed-on: https://gerrit.libreoffice.org/77469 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/filter/oox')
-rw-r--r--sc/source/filter/oox/condformatbuffer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/oox/condformatbuffer.cxx b/sc/source/filter/oox/condformatbuffer.cxx
index 0d75b4399200..af58c026c4af 100644
--- a/sc/source/filter/oox/condformatbuffer.cxx
+++ b/sc/source/filter/oox/condformatbuffer.cxx
@@ -1166,12 +1166,12 @@ void CondFormatBuffer::finalizeImport()
for( const auto& rxCondFormat : maCondFormats )
{
if ( rxCondFormat.get())
- rxCondFormat.get()->finalizeImport();
+ rxCondFormat->finalizeImport();
}
for ( const auto& rxCfRule : maCfRules )
{
if ( rxCfRule.get() )
- rxCfRule.get()->finalizeImport();
+ rxCfRule->finalizeImport();
}
nExtCFIndex = 0;