summaryrefslogtreecommitdiff
path: root/writerfilter/source/rtftok
diff options
context:
space:
mode:
authorNoel <noelgrandin@gmail.com>2020-10-05 09:27:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-10-05 14:42:12 +0200
commit8e34b8ce575bab7e71de20db10cc49ae956d7ff1 (patch)
tree7abda9ad90ad4aed940a3a1e08a4a8de726b94a4 /writerfilter/source/rtftok
parent8ec183056dd7a954d9af7b26432d7680a31e9896 (diff)
loplugin:reducevarscope in writerfilter
Change-Id: I19f12959a04be07cdd2083a6aa519943d069fae6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103947 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'writerfilter/source/rtftok')
-rw-r--r--writerfilter/source/rtftok/rtfsdrimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/rtftok/rtfsdrimport.cxx b/writerfilter/source/rtftok/rtfsdrimport.cxx
index 473e42395444..64177ee88f91 100644
--- a/writerfilter/source/rtftok/rtfsdrimport.cxx
+++ b/writerfilter/source/rtftok/rtfsdrimport.cxx
@@ -778,9 +778,9 @@ void RTFSdrImport::resolve(RTFShape& rShape, bool bClose, ShapeOrPict const shap
oRelativeWidth = 100;
}
nRelativeWidthRelation = text::RelOrientation::FRAME;
- sal_Int16 const nVertOrient = text::VertOrientation::CENTER;
if (xPropertySet.is())
{
+ sal_Int16 const nVertOrient = text::VertOrientation::CENTER;
xPropertySet->setPropertyValue("VertOrient", uno::makeAny(nVertOrient));
}
}