From ba697931a74e047206739c1935dc06a0890c5661 Mon Sep 17 00:00:00 2001 From: Zolnai Tamás Date: Sat, 25 Jan 2014 00:13:36 +0100 Subject: drawingML import: parse shape text run inside w:sdt and s:sdtContent Change-Id: I6dc5939ae66967785cdc5dab318024b8cb17d1cd --- oox/source/drawingml/textbodycontext.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'oox') diff --git a/oox/source/drawingml/textbodycontext.cxx b/oox/source/drawingml/textbodycontext.cxx index 77b5e7aef9bf..b9921e093a33 100644 --- a/oox/source/drawingml/textbodycontext.cxx +++ b/oox/source/drawingml/textbodycontext.cxx @@ -86,6 +86,9 @@ ContextHandlerRef TextParagraphContext::onCreateContext( sal_Int32 aElementToken return new TextParagraphPropertiesContext( *this, rAttribs, mrParagraph.getProperties() ); case A_TOKEN( endParaRPr ): return new TextCharacterPropertiesContext( *this, rAttribs, mrParagraph.getEndProperties() ); + case OOX_TOKEN( doc, sdt ): + case OOX_TOKEN( doc, sdtContent ): + return this; } return 0; -- cgit