From 01752af18d623676c4ebc7a8a4a47f69dfb79057 Mon Sep 17 00:00:00 2001 From: Regényi Balázs Date: Tue, 7 Apr 2020 10:01:15 +0200 Subject: tdf#131922 DOCX DrawingML shape import: fix lang-id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The language identifier of text of grouped shapes wasn't imported. Co-Author: Szabolcs Tóth Change-Id: Ic71ea1bdf3aed27ad813cfa33659921060c0ec0b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91801 Tested-by: László Németh Reviewed-by: László Németh --- oox/source/drawingml/textcharacterpropertiescontext.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'oox/source/drawingml') diff --git a/oox/source/drawingml/textcharacterpropertiescontext.cxx b/oox/source/drawingml/textcharacterpropertiescontext.cxx index 4533a96e1cca..7658d41031f0 100644 --- a/oox/source/drawingml/textcharacterpropertiescontext.cxx +++ b/oox/source/drawingml/textcharacterpropertiescontext.cxx @@ -262,6 +262,9 @@ ContextHandlerRef TextCharacterPropertiesContext::onCreateContext( sal_Int32 aEl mrTextCharacterProperties.moBaseline = -25000; break; } + case W_TOKEN(lang): + mrTextCharacterProperties.moLang = rAttribs.getString(W_TOKEN(val), OUString()); + break; case OOX_TOKEN(w14, glow): case OOX_TOKEN(w14, shadow): case OOX_TOKEN(w14, reflection): -- cgit