diff options
author | Justin Luth <justin.luth@collabora.com> | 2023-01-12 11:18:55 -0500 |
---|---|---|
committer | Justin Luth <jluth@mail.com> | 2023-01-15 02:09:06 +0000 |
commit | d50eca2a30bdabdc1735c590d6ec1913c6dd22fd (patch) | |
tree | f8d8a738c60fa0c69954a9fbf684a2e7640d8740 /include/sax | |
parent | 37e3455a13ab5741104bf41d05a80e60a4612682 (diff) |
tdf#117266 sc oox: export vml button with a correct name
Without a correctly formatted ID, LO was unable to import
the shape into the spreadsheet. Now at least the button
shows up and can be pressed.
MS Word already showed the button before the patch,
so nothing there has changed. That suggests that our
problem may be more during import.
This code path is also followed by DOC and DOCX formats,
but they do completely different things with the results.
This is super nasty code...
Change-Id: I383736a7de9c3e94b427d5747e5949c0348dcecd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145509
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
Diffstat (limited to 'include/sax')
-rw-r--r-- | include/sax/fshelper.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sax/fshelper.hxx b/include/sax/fshelper.hxx index 2d01066a1453..338260861132 100644 --- a/include/sax/fshelper.hxx +++ b/include/sax/fshelper.hxx @@ -155,6 +155,8 @@ public: void mergeTopMarks(sal_Int32 nTag, MergeMarks eMergeType = MergeMarks::APPEND ); + void setAllowXEscape(bool bSet); + private: void pushAttributeValue( sal_Int32 attribute, const char* value ); void pushAttributeValue( sal_Int32 attribute, const OString& value ); |