summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-01 08:40:19 +0200
committerAndras Timar <andras.timar@collabora.com>2015-08-03 19:50:34 +0200
commit243f548fd558eab1334f202d0f261b5319cd71fa (patch)
tree11207eff775c70958d3b969f1f0d57ad4bff7bcc
parent5127b338272094af1723c88cff3e1c227586a07a (diff)
xmloff: ODF import: fix spelling of "extrusion-first-light-level"
The attribute is not imported currently due to the typo, but is exported with the correct spelling from shapeexport.cxx:4377 with XML_EXTRUSION_FIRST_LIGHT_LEVEL. Change-Id: I83d77e7eabbbc961fa4f7faf8e20b47601ba071b Reviewed-on: https://gerrit.libreoffice.org/16641 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com> (cherry picked from commit 9fb8b3968670645b257982773ece9d9413f404c6) Signed-off-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r--xmloff/source/draw/EnhancedCustomShapeToken.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/EnhancedCustomShapeToken.cxx b/xmloff/source/draw/EnhancedCustomShapeToken.cxx
index d9c45ea1698a..1b6ad55ccb28 100644
--- a/xmloff/source/draw/EnhancedCustomShapeToken.cxx
+++ b/xmloff/source/draw/EnhancedCustomShapeToken.cxx
@@ -57,7 +57,7 @@ static const TokenTable pTokenTableArray[] =
{ "extrusion-light-face", EAS_extrusion_light_face },
{ "extrusion-first-light-harsh", EAS_extrusion_first_light_harsh },
{ "extrusion-second-light-harsh", EAS_extrusion_second_light_harsh },
- { "extrusion-first-light-livel", EAS_extrusion_first_light_level },
+ { "extrusion-first-light-level", EAS_extrusion_first_light_level },
{ "extrusion-second-light-level", EAS_extrusion_second_light_level },
{ "extrusion-first-light-direction", EAS_extrusion_first_light_direction },
{ "extrusion-second-light-direction", EAS_extrusion_second_light_direction },