diff options
author | Xisco Fauli <anistenis@gmail.com> | 2016-01-20 18:43:03 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2016-01-21 06:30:54 +0000 |
commit | e941434d98fa1500ad85be3ff59117d62ac8bc24 (patch) | |
tree | f70359e3d69bd7bbe410909034987d14f4e93f47 /svgio | |
parent | a5372932f787534d15d4e36ee8c297f3c6ac0888 (diff) |
tdf#85770 reuse variable instead of getting it again
Change-Id: I268fd695e4cfd91dc8aba2b098911dbd9cf02ad7
Reviewed-on: https://gerrit.libreoffice.org/21639
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'svgio')
-rw-r--r-- | svgio/source/svgreader/svgcharacternode.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svgcharacternode.cxx b/svgio/source/svgreader/svgcharacternode.cxx index e5bc0a5cb95c..b50aedc9423c 100644 --- a/svgio/source/svgreader/svgcharacternode.cxx +++ b/svgio/source/svgreader/svgcharacternode.cxx @@ -510,7 +510,7 @@ namespace svgio rSvgTextPosition, rSvgStyleAttributes)); - if(xRef.is() && (Visibility_visible == getSvgStyleAttributes()->getVisibility())) + if(xRef.is() && (Visibility_visible == rSvgStyleAttributes.getVisibility())) { if(!rSvgTextPosition.isRotated()) { |