diff options
author | Lennard <Wasserthal@nefkom.net> | 2012-12-27 22:12:56 +0100 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2013-01-31 17:38:27 +0000 |
commit | d9a18176d6b56119aa91699cd3aa102e36a7805c (patch) | |
tree | d4d1453d67a700ef6711bf3fec6fe2e7ffb6f8b5 /oox/source/export/shapes.cxx | |
parent | af331776895c1c3d036040599501d3f08a4d5562 (diff) |
fdo#56976 fixes up Arrow import bug
Importing an LibreOffice upArrow from an pptx document caused it and several custom shapes go down the drain.
That was perhaps a memory violation because the procedure to generate it in working memory was missing.
This patch gets you that procedure. Note it cannot be manipulated yet.
Signed-off-by: Lennard <Wasserthal@nefkom.net>
Conflicts:
oox/source/drawingml/customshapepresets4.cxx
Change-Id: I8b9ce3ae1aef7894ab04b9857e90831d715ec1d5
Reviewed-on: https://gerrit.libreoffice.org/1492
Reviewed-by: Petr Mladek <pmladek@suse.cz>
Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'oox/source/export/shapes.cxx')
-rw-r--r-- | oox/source/export/shapes.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oox/source/export/shapes.cxx b/oox/source/export/shapes.cxx index 6aa3b0dba939..41d505a5df48 100644 --- a/oox/source/export/shapes.cxx +++ b/oox/source/export/shapes.cxx @@ -435,6 +435,7 @@ static const CustomShapeTypeTranslationTable pCustomShapeTypeTranslationTable[] { "ooxml-flowChartMerge", "flowChartMerge" }, { "ooxml-line", "line" }, { "ooxml-downArrow", "downArrow" }, + { "ooxml-upArrow", "upArrow" }, { "ooxml-curvedDownArrow", "curvedDownArrow" }, { "ooxml-actionButtonReturn", "actionButtonReturn" }, { "ooxml-flowChartInputOutput", "flowChartInputOutput" }, |